mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
22 lines
502 B
Nix
22 lines
502 B
Nix
{ lib, mkCoqDerivation, coq, version ? null }:
|
|
|
|
with lib;
|
|
mkCoqDerivation {
|
|
pname = "LibHyps";
|
|
owner = "Matafou";
|
|
inherit version;
|
|
defaultVersion = if (versions.range "8.11" "8.15") coq.version then "2.0.4.1" else null;
|
|
release = {
|
|
"2.0.4.1".sha256 = "09p89701zhrfdmqlpxw3mziw8yylj1w1skb4b0xpbdwd1vsn4k3h";
|
|
};
|
|
|
|
configureScript = "./configure.sh";
|
|
|
|
releaseRev = (v: "libhyps-${v}");
|
|
|
|
meta = {
|
|
description = "Hypotheses manipulation library";
|
|
license = licenses.mit;
|
|
};
|
|
}
|