lol

Merge pull request #130023 from siraben/hierarchy-builder-update

coqPackages.hierarchy-builder: 1.0.0 -> 1.1.0

authored by

Ben Siraphob and committed by
GitHub
a22cd199 e5b5d1b4

+10 -5
+8 -4
pkgs/development/coq-modules/hierarchy-builder/default.nix
··· 5 5 owner = "math-comp"; 6 6 inherit version; 7 7 defaultVersion = with versions; switch coq.coq-version [ 8 - { case = isGe "8.12"; out = "1.0.0"; } 8 + { case = isGe "8.12"; out = "1.1.0"; } 9 9 { case = range "8.11" "8.12"; out = "0.10.0"; } 10 10 ] null; 11 + release."1.1.0".sha256 = "sha256-spno5ty4kU4WWiOfzoqbXF8lWlNSlySWcRReR3zE/4Q="; 11 12 release."1.0.0".sha256 = "0yykygs0z6fby6vkiaiv3azy1i9yx4rqg8xdlgkwnf2284hffzpp"; 12 13 release."0.10.0".sha256 = "1a3vry9nzavrlrdlq3cys3f8kpq3bz447q8c4c7lh2qal61wb32h"; 13 14 releaseRev = v: "v${v}"; ··· 16 17 17 18 propagatedBuildInputs = [ coq-elpi ]; 18 19 20 + mlPlugin = true; 21 + 22 + installFlags = [ "DESTDIR=$(out)" "COQMF_COQLIB=lib/coq/${coq.coq-version}" ]; 19 23 extraInstallFlags = [ "VFILES=structures.v" ]; 20 24 21 25 meta = { 22 - description = "Coq plugin embedding ELPI."; 23 - maintainers = [ maintainers.cohencyril ]; 24 - license = licenses.lgpl21; 26 + description = "High level commands to declare a hierarchy based on packed classes"; 27 + maintainers = with maintainers; [ cohencyril siraben ]; 28 + license = licenses.mit; 25 29 }; 26 30 }
+2 -1
pkgs/development/coq-modules/mathcomp-analysis/default.nix
··· 8 8 pname = "analysis"; 9 9 owner = "math-comp"; 10 10 11 + release."0.3.9".sha256 = "sha256-uUU9diBwUqBrNRLiDc0kz0CGkwTZCUmigPwLbpDOeg4="; 11 12 release."0.3.6".sha256 = "0g2j7b2hca4byz62ssgg90bkbc8wwp7xkb2d3225bbvihi92b4c5"; 12 13 release."0.3.4".sha256 = "18mgycjgg829dbr7ps77z6lcj03h3dchjbj5iir0pybxby7gd45c"; 13 14 release."0.3.3".sha256 = "1m2mxcngj368vbdb8mlr91hsygl430spl7lgyn9qmn3jykack867"; ··· 16 17 17 18 inherit version; 18 19 defaultVersion = with versions; switch [ coq.version mathcomp.version ] [ 19 - { cases = [ (range "8.11" "8.13") "1.12.0" ]; out = "0.3.6"; } 20 + { cases = [ (range "8.11" "8.13") "1.12.0" ]; out = "0.3.9"; } 20 21 { cases = [ (range "8.11" "8.13") "1.11.0" ]; out = "0.3.4"; } 21 22 { cases = [ (range "8.10" "8.12") "1.11.0" ]; out = "0.3.3"; } 22 23 { cases = [ (range "8.10" "8.11") "1.11.0" ]; out = "0.3.1"; }