Merge pull request #192431 from mattam82/support-equations-dev

This commit is contained in:
John Wiegley 2022-09-22 11:25:36 -04:00 committed by GitHub
commit ba9c49900a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,5 +63,5 @@ with lib; (mkCoqDerivation {
maintainers = with maintainers; [ jwiegley ];
};
}).overrideAttrs (o: {
preBuild = "coq_makefile -f _CoqProject -o Makefile${optionalString (versionAtLeast o.version "1.2.1") ".coq"}";
preBuild = "coq_makefile -f _CoqProject -o Makefile${optionalString (versionAtLeast o.version "1.2.1" || o.version == "dev") ".coq"}";
})