17 lines
399 B
Nix
17 lines
399 B
Nix
{ sources ? import ./nix/sources.nix
|
|
, system ? builtins.currentSystem
|
|
, crossSystem ? null
|
|
, config ? {}
|
|
, cardanoNodeProject ? import sources.cardano-node {}
|
|
}@args: with import ./nix args; {
|
|
shell = mkShell {
|
|
inherit (import sources.niv {}) niv;
|
|
buildInputs = [
|
|
niv
|
|
nixops
|
|
];
|
|
NIX_PATH = "nixpkgs=${path}";
|
|
NIXOPS_DEPLOYMENT = "${globals.deploymentName}";
|
|
};
|
|
}
|