mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
coqPackages.mathcomp-bigenough: init at 1.0.0
This commit is contained in:
parent
5211cb0ccc
commit
590e07779c
2 changed files with 30 additions and 0 deletions
29
pkgs/development/coq-modules/mathcomp-bigenough/default.nix
Normal file
29
pkgs/development/coq-modules/mathcomp-bigenough/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub, coq, mathcomp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.0";
|
||||
name = "coq${coq.coq-version}-mathcomp-bigenough-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "math-comp";
|
||||
repo = "bigenough";
|
||||
rev = version;
|
||||
sha256 = "10g0gp3hk7wri7lijkrqna263346wwf6a3hbd4qr9gn8hmsx70wg";
|
||||
};
|
||||
|
||||
buildInputs = [ coq ];
|
||||
propagatedBuildInputs = [ mathcomp ];
|
||||
|
||||
installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
|
||||
|
||||
meta = {
|
||||
description = "A small library to do epsilon - N reasonning";
|
||||
inherit (src.meta) homepage;
|
||||
inherit (mathcomp.meta) platforms license;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
};
|
||||
|
||||
passthru = {
|
||||
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" ];
|
||||
};
|
||||
}
|
|
@ -33,6 +33,7 @@ let
|
|||
iris = callPackage ../development/coq-modules/iris {};
|
||||
math-classes = callPackage ../development/coq-modules/math-classes { };
|
||||
mathcomp = callPackage ../development/coq-modules/mathcomp { };
|
||||
mathcomp-bigenough = callPackage ../development/coq-modules/mathcomp-bigenough { };
|
||||
metalib = callPackage ../development/coq-modules/metalib { };
|
||||
multinomials = callPackage ../development/coq-modules/multinomials {};
|
||||
paco = callPackage ../development/coq-modules/paco {};
|
||||
|
|
Loading…
Reference in a new issue