mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
67a5833330
APRON is an OCaml library of numerical abstract domains Homepage: http://apron.cri.ensmp.fr/library/
25 lines
754 B
Nix
25 lines
754 B
Nix
{ 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;
|
|
};
|
|
}
|