3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/coq-modules/math-classes/default.nix

18 lines
562 B
Nix
Raw Normal View History

2020-08-28 22:05:46 +01:00
{ lib, mkCoqDerivation, coq, bignums, version ? null }:
2020-08-28 22:05:46 +01:00
with lib; mkCoqDerivation {
2020-08-28 22:05:46 +01:00
pname = "math-classes";
inherit version;
defaultVersion = if versions.range "8.6" "8.11" coq.coq-version then "8.11.0" else null;
release."8.11.0".sha256 = "1hjgncvm1m46lw6264w4dqsy8dbh74vhmzq52x0fba2yqlvy94sf";
2020-08-28 22:05:46 +01:00
extraBuildInputs = [ bignums ];
2020-08-28 22:05:46 +01:00
meta = {
homepage = "https://math-classes.github.io";
description = "A library of abstract interfaces for mathematical structures in Coq.";
maintainers = with maintainers; [ siddharthist jwiegley ];
};
}