mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
30 lines
760 B
Nix
30 lines
760 B
Nix
{ stdenv, fetchFromGitHub, coq, mathcomp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.0";
|
|
name = "coq${coq.coq-version}-mathcomp-finmap-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "math-comp";
|
|
repo = "finmap";
|
|
rev = version;
|
|
sha256 = "05df59v3na8jhpsfp7hq3niam6asgcaipg2wngnzxzqnl86srp2a";
|
|
};
|
|
|
|
buildInputs = [ coq ];
|
|
propagatedBuildInputs = [ mathcomp ];
|
|
|
|
installFlags = "-f Makefile.coq COQLIB=$(out)/lib/coq/${coq.coq-version}/";
|
|
|
|
meta = {
|
|
description = "A finset and finmap library";
|
|
inherit (src.meta) homepage;
|
|
inherit (mathcomp.meta) platforms license;
|
|
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
|
};
|
|
|
|
passthru = {
|
|
compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" ];
|
|
};
|
|
}
|