Skip to content
Snippets Groups Projects
Commit bbffaf7b authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Avoid the infinite recursion

The new binding completely obscures the old binding.  The `else` case was
recursive with no base.
parent 0360c2cd
No related branches found
No related tags found
1 merge request!196Remove the bundled Tahoe-LAFS and just require it as a param or nixpkgs attr
......@@ -8,9 +8,10 @@
let
pkgs' = pkgs.extend (import ./overlays.nix);
callPackage = pkgs'.python27Packages.callPackage;
tahoe-lafs = if tahoe-lafs == null then pkgs.python2Packages.tahoe-lafs-1_14 else tahoe-lafs;
tahoe-lafs' = if tahoe-lafs == null then pkgs.python2Packages.tahoe-lafs-1_14 else tahoe-lafs;
in
callPackage ./zkapauthorizer.nix {
challenge-bypass-ristretto = callPackage ./python-challenge-bypass-ristretto.nix { };
inherit hypothesisProfile collectCoverage testSuite trialArgs tahoe-lafs;
inherit hypothesisProfile collectCoverage testSuite trialArgs;
tahoe-lafs = tahoe-lafs';
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment