Skip to content
Snippets Groups Projects
Select Git revision
  • restricted-sqlite-strategies
  • compare-structured-sql-dumps
  • main default protected
  • 235.backup-and-recovery.recovery
  • mypy
  • real-spender
  • github/fork/tp-la/real-spender
  • 260.metric-rejected-zkaps
  • implicit-lease-renewal-problems
  • mach-nix
  • github/fork/tp-la/deep-traverse
  • v0.0
12 results

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
          ];
        }