Skip to content
Snippets Groups Projects
shell.nix 232 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 {} }:
      let
        tests = pkgs.callPackage ./tests.nix {};
      in
        pkgs.mkShell {
          packages = [
            tests.python
            pkgs.niv
          ];
        }