Skip to content
Snippets Groups Projects
shell.nix 305 B
Newer Older
  • Learn to ignore specific revisions
  • Tom Prince's avatar
    Tom Prince committed
      sources = import nix/sources.nix;
    
    Tom Prince's avatar
    Tom Prince committed
    { pkgs ? import sources.release2015 {}
    , tahoe-lafs-source ? "tahoe-lafs"
    }:
    
    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
          ];
        }