Revision 1e6d420bd53a6b8d0c563c9c35ab0aa266daff04 authored by Cameron Low on 04 September 2023, 15:38:51 UTC, committed by Cameron Low on 04 September 2023, 15:38:51 UTC
1 parent 46d6948
shell.nix
{ withProvers ? true, devDeps ? [] }:
with import <nixpkgs> {};
let ec = callPackage ./default.nix { inherit withProvers devDeps; };
in
pkgs.mkShell {
buildInputs = ec.buildInputs
++ ec.propagatedBuildInputs
++ (with python3Packages; [
pyyaml
]);
}

Computing file changes ...