mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
coqPackages.zorns-lemma: fix build of versions pre-9.0
The source was fetched from the wrong location and thus did not match the provided sha.
This commit is contained in:
parent
073fe478e1
commit
290b16bfe5
1 changed files with 2 additions and 3 deletions
|
@ -1,9 +1,8 @@
|
|||
{ lib, mkCoqDerivation, coq, version ? null }:
|
||||
with lib;
|
||||
|
||||
mkCoqDerivation {
|
||||
(mkCoqDerivation {
|
||||
pname = "zorns-lemma";
|
||||
repo = "topology";
|
||||
|
||||
releaseRev = v: "v${v}";
|
||||
|
||||
|
@ -38,4 +37,4 @@ mkCoqDerivation {
|
|||
maintainers = with maintainers; [ siraben ];
|
||||
license = licenses.lgpl21Plus;
|
||||
};
|
||||
}
|
||||
}).overrideAttrs({version, ...}: if versions.isGe "9.0" version then { repo = "topology"; } else {})
|
||||
|
|
Loading…
Reference in a new issue