ocamlPackages.apron: init at 20160125
APRON is an OCaml library of numerical abstract domains Homepage: http://apron.cri.ensmp.fr/library/
This commit is contained in:
parent
2f2fbc9966
commit
67a5833330
24
pkgs/development/ocaml-modules/apron/default.nix
Normal file
24
pkgs/development/ocaml-modules/apron/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchzip, perl, gmp, mpfr, ppl, ocaml, findlib, camlidl, mlgmpidl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ocaml${ocaml.version}-apron-${version}";
|
||||
version = "20160125";
|
||||
src = fetchzip {
|
||||
url = "http://apron.gforge.inria.fr/apron-${version}.tar.gz";
|
||||
sha256 = "1a7b7b9wsd0gdvm41lgg6ayb85wxc2a3ggcrghy4qiphs4b9v4m4";
|
||||
};
|
||||
|
||||
buildInputs = [ perl gmp mpfr ppl ocaml findlib camlidl ];
|
||||
propagatedBuildInputs = [ mlgmpidl ];
|
||||
|
||||
prefixKey = "-prefix ";
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = {
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
homepage = http://apron.cri.ensmp.fr/library/;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
description = "Numerical abstract domain library";
|
||||
inherit (ocaml.meta) platforms;
|
||||
};
|
||||
}
|
@ -20,6 +20,8 @@ let
|
||||
|
||||
ansiterminal = callPackage ../development/ocaml-modules/ansiterminal { };
|
||||
|
||||
apron = callPackage ../development/ocaml-modules/apron { };
|
||||
|
||||
asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { };
|
||||
|
||||
astring = callPackage ../development/ocaml-modules/astring { };
|
||||
|
Loading…
Reference in New Issue
Block a user