mio-ops/default.nix
2020-07-30 12:58:46 +10:00

19 lines
446 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 = [
cardanoNodeProject.cardano-cli
niv
nix
nixops
];
NIX_PATH = "nixpkgs=${path}";
NIXOPS_DEPLOYMENT = "${globals.deploymentName}";
};
}