1234567891011121314151617181920 |
- # These arguments are so you can override settings from the command
- # line using the `nix-hs' tool.
- { nixpkgs ? import <nixpkgs> { }
- , compiler ? "default"
- , profiling ? false
- }:
-
- let
- pkgs = nixpkgs;
-
- buildInputs = with pkgs; [
- # List extra dependencies here.
- nixops
- mkpasswd
- pwgen
- ];
-
- in
- pkgs.nix-hs.interactive ./merkel.nix
- { inherit compiler profiling buildInputs; }
|