Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

shell.nix

Blame
  • shell.nix 305 B
    let
      sources = import nix/sources.nix;
    in
    { pkgs ? import sources.release2015 {}
    , tahoe-lafs-source ? "tahoe-lafs"
    }:
      let
        tests = pkgs.callPackage ./tests.nix {
          inherit tahoe-lafs-source;
        };
      in
        pkgs.mkShell {
          packages = [
            tests.python
            pkgs.niv
          ];
        }