Skip to content

Commit

Permalink
coqPackages.math-classes: init at 2016-06-08
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett authored and vbgl committed Jan 27, 2017
1 parent a35373f commit d486fb0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/coq-modules/math-classes/default.nix
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, coq }:

stdenv.mkDerivation {
name = "coq${coq.coq-version}-math-classes-2016-06-08";

src = fetchFromGitHub {
owner = "math-classes";
repo = "math-classes";
rev = "751e63b260bd2f78b280f2566c08a18034bd40b3";
sha256 = "0kjc2wzb6n9hcqb2ijx2pckn8jk5g09crrb87yb4s9m0mrw79smr";
};

buildInputs = [ coq ];
enableParallelBuilding = true;
installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";

meta = with stdenv.lib; {
homepage = https://math-classes.github.io;
description = "A library of abstract interfaces for mathematical structures in Coq.";
maintainers = with maintainers; [ siddharthist ];
platforms = coq.meta.platforms;
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -17028,6 +17028,7 @@ with pkgs;
flocq = callPackage ../development/coq-modules/flocq {};
interval = callPackage ../development/coq-modules/interval {};
mathcomp = callPackage ../development/coq-modules/mathcomp { };
math-classes = callPackage ../development/coq-modules/math-classes { };
ssreflect = callPackage ../development/coq-modules/ssreflect { };
fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {};
};
Expand Down

0 comments on commit d486fb0

Please sign in to comment.