lol
0
fork

Configure Feed

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

ocamlPackages.apron: init at 20160125

APRON is an OCaml library of numerical abstract domains

Homepage: http://apron.cri.ensmp.fr/library/

+26
+24
pkgs/development/ocaml-modules/apron/default.nix
··· 1 + { stdenv, fetchzip, perl, gmp, mpfr, ppl, ocaml, findlib, camlidl, mlgmpidl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ocaml${ocaml.version}-apron-${version}"; 5 + version = "20160125"; 6 + src = fetchzip { 7 + url = "http://apron.gforge.inria.fr/apron-${version}.tar.gz"; 8 + sha256 = "1a7b7b9wsd0gdvm41lgg6ayb85wxc2a3ggcrghy4qiphs4b9v4m4"; 9 + }; 10 + 11 + buildInputs = [ perl gmp mpfr ppl ocaml findlib camlidl ]; 12 + propagatedBuildInputs = [ mlgmpidl ]; 13 + 14 + prefixKey = "-prefix "; 15 + createFindlibDestdir = true; 16 + 17 + meta = { 18 + license = stdenv.lib.licenses.lgpl21; 19 + homepage = http://apron.cri.ensmp.fr/library/; 20 + maintainers = [ stdenv.lib.maintainers.vbgl ]; 21 + description = "Numerical abstract domain library"; 22 + inherit (ocaml.meta) platforms; 23 + }; 24 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 20 20 21 21 ansiterminal = callPackage ../development/ocaml-modules/ansiterminal { }; 22 22 23 + apron = callPackage ../development/ocaml-modules/apron { }; 24 + 23 25 asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { }; 24 26 25 27 astring = callPackage ../development/ocaml-modules/astring { };