Switched to niv sources
This commit is contained in:
parent
4f5f1926d4
commit
2a2d05484c
11
default.nix
11
default.nix
|
@ -1,10 +1,17 @@
|
||||||
{ sourcePaths ? import ./nix/sources.nix
|
{ sources ? import ./nix/sources.nix
|
||||||
, system ? builtins.currentSystem
|
, system ? builtins.currentSystem
|
||||||
, crossSystem ? null
|
, crossSystem ? null
|
||||||
, config ? {}
|
, config ? {}
|
||||||
|
, cardanoNodeProject ? import sources.cardano-node {}
|
||||||
}@args: with import ./nix args; {
|
}@args: with import ./nix args; {
|
||||||
shell = mkShell {
|
shell = mkShell {
|
||||||
buildInputs = [ niv nixops nix ];
|
inherit (import sources.niv {}) niv;
|
||||||
|
buildInputs = [
|
||||||
|
cardanoNodeProject.cardano-cli
|
||||||
|
niv
|
||||||
|
nix
|
||||||
|
nixops
|
||||||
|
];
|
||||||
NIX_PATH = "nixpkgs=${path}";
|
NIX_PATH = "nixpkgs=${path}";
|
||||||
NIXOPS_DEPLOYMENT = "${globals.deploymentName}";
|
NIXOPS_DEPLOYMENT = "${globals.deploymentName}";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ sourcePaths ? import ./sources.nix
|
{ sources ? import ./sources.nix
|
||||||
, system ? builtins.currentSystem
|
, system ? builtins.currentSystem
|
||||||
, crossSystem ? null
|
, crossSystem ? null
|
||||||
, config ? {} }:
|
, config ? {} }:
|
||||||
|
@ -17,7 +17,7 @@ let
|
||||||
upstream-overlays = [
|
upstream-overlays = [
|
||||||
( _: super: {
|
( _: super: {
|
||||||
|
|
||||||
sourcePaths = (super.sourcePaths or {}) // sourcePaths;
|
sources = (super.sources or {}) // sources;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -26,6 +26,6 @@ let
|
||||||
globals ++
|
globals ++
|
||||||
upstream-overlays;
|
upstream-overlays;
|
||||||
in
|
in
|
||||||
import sourcePaths.nixpkgs {
|
import sources.nixpkgs {
|
||||||
inherit overlays system crossSystem config;
|
inherit overlays system crossSystem config;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
sourcePaths: map import (import ./overlay-list.nix) ++
|
|
||||||
[(self: super: { inherit sourcePaths; })]
|
|
|
@ -1,3 +0,0 @@
|
||||||
self: super: {
|
|
||||||
inherit (import self.sourcePaths.niv {}) niv;
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
[
|
|
||||||
./niv.nix
|
|
||||||
]
|
|
Loading…
Reference in a new issue