coq-dpdgraph: init at 0.5

This commit is contained in:
Vincent Laporte 2016-05-02 09:53:29 +02:00
parent 6ca5c3667b
commit a42f845925
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, coq, ocamlPackages }:
stdenv.mkDerivation {
name = "coq${coq.coq-version}-dpdgraph-0.5";
src = fetchFromGitHub {
owner = "Karmaki";
repo = "coq-dpdgraph";
rev = "227a6a28bf11cf1ea56f359160558965154dd176";
sha256 = "1vxf7qq37mnmlclkr394147xvrky3p98ar08c4wndwrp41gfbxhq";
};
buildInputs = [ coq ]
++ (with ocamlPackages; [ ocaml findlib ocamlgraph ]);
preInstall = ''
mkdir -p $out/bin
'';
installFlags = ''
COQLIB=$(out)/lib/coq/${coq.coq-version}/
BINDIR=$(out)/bin
'';
meta = {
description = "Build dependency graphs between Coq objects";
license = stdenv.lib.licenses.lgpl21;
homepage = https://github.com/Karmaki/coq-dpdgraph/;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
platforms = coq.meta.platforms;
};
}

View file

@ -15882,6 +15882,8 @@ in
coquelicot = callPackage ../development/coq-modules/coquelicot {};
dpdgraph = callPackage ../development/coq-modules/dpdgraph {};
flocq = callPackage ../development/coq-modules/flocq {};
interval = callPackage ../development/coq-modules/interval {};