lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

coqPackages.ssreflect, more: build ssrcoq binary, add maintainer

+22 -4
+1 -1
pkgs/development/coq-modules/containers/default.nix
··· 17 17 meta = with stdenv.lib; { 18 18 homepage = http://coq.inria.fr/pylons/pylons/contribs/view/Containers/v8.4; 19 19 description = "A typeclass-based Coq library of finite sets/maps"; 20 - maintainers = with maintainers; [ vbgl ]; 20 + maintainers = with maintainers; [ vbgl jwiegley ]; 21 21 platforms = coq.meta.platforms; 22 22 }; 23 23
+3 -1
pkgs/development/coq-modules/coq-ext-lib/default.nix
··· 14 14 buildInputs = [ coq.ocaml coq.camlp5 ]; 15 15 propagatedBuildInputs = [ coq ]; 16 16 17 - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}"; 17 + enableParallelBuilding = true; 18 + 19 + installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; 18 20 19 21 meta = with stdenv.lib; { 20 22 homepage = https://github.com/coq-ext-lib/coq-ext-lib;
+3 -1
pkgs/development/coq-modules/mathcomp/default.nix
··· 11 11 12 12 propagatedBuildInputs = [ coq ssreflect ]; 13 13 14 + enableParallelBuilding = true; 15 + 14 16 installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; 15 17 16 18 meta = with stdenv.lib; { 17 19 homepage = http://ssr.msr-inria.inria.fr/; 18 20 license = licenses.cecill-b; 19 - maintainers = [ maintainers.vbgl ]; 21 + maintainers = [ maintainers.vbgl maintainers.jwiegley ]; 20 22 platforms = coq.meta.platforms; 21 23 hydraPlatforms = []; 22 24 };
+15 -1
pkgs/development/coq-modules/ssreflect/default.nix
··· 14 14 buildInputs = [ coq.ocaml coq.camlp5 ]; 15 15 propagatedBuildInputs = [ coq ]; 16 16 17 + enableParallelBuilding = true; 18 + 19 + patchPhase = '' 20 + # Permit building of the ssrcoq statically-bound executable 21 + sed -i 's/^#-custom/-custom/' Make 22 + sed -i 's/^#SSRCOQ/SSRCOQ/' Make 23 + ''; 24 + 17 25 installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; 18 26 27 + postInstall = '' 28 + mkdir -p $out/bin 29 + cp -p bin/ssrcoq $out/bin 30 + cp -p bin/ssrcoq.byte $out/bin 31 + ''; 32 + 19 33 meta = with stdenv.lib; { 20 34 homepage = http://ssr.msr-inria.inria.fr/; 21 35 license = licenses.cecill-b; 22 - maintainers = with maintainers; [ vbgl ]; 36 + maintainers = with maintainers; [ vbgl jwiegley ]; 23 37 platforms = coq.meta.platforms; 24 38 }; 25 39