Skip to content
Snippets Groups Projects
shell.nix 305 B
Newer Older
Tom Prince's avatar
Tom Prince committed
  sources = import nix/sources.nix;
{ pkgs ? import sources.release2105 {}
, tahoe-lafs-source ? "tahoe-lafs"
Tom Prince's avatar
Tom Prince committed
}:
Tom Prince's avatar
Tom Prince committed
  let
Tom Prince's avatar
Tom Prince committed
    tests = pkgs.callPackage ./tests.nix {
      inherit tahoe-lafs-source;
    };
Tom Prince's avatar
Tom Prince committed
  in
    pkgs.mkShell {
      packages = [
        tests.python
        pkgs.niv
      ];
    }