mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 10:14:48 +00:00
29 lines
550 B
Nix
29 lines
550 B
Nix
{
|
|
lib,
|
|
mkCoqDerivation,
|
|
coq,
|
|
stdlib,
|
|
version ? null,
|
|
}:
|
|
|
|
mkCoqDerivation {
|
|
pname = "LibHyps";
|
|
owner = "Matafou";
|
|
inherit version;
|
|
defaultVersion = if (lib.versions.range "8.11" "9.0") coq.version then "2.0.8" else null;
|
|
release = {
|
|
"2.0.8".hash = "sha256-u8T7ZWfgYNFBsIPss0uUS0oBvdlwPp3t5yYIMjYzfLc=";
|
|
};
|
|
|
|
configureScript = "./configure.sh";
|
|
|
|
propagatedBuildInputs = [ stdlib ];
|
|
|
|
releaseRev = (v: "libhyps-${v}");
|
|
|
|
meta = {
|
|
description = "Hypotheses manipulation library";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|