1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/ocaml-modules/zarith/default.nix
Austin Seipp 4fe2f98051 zarith: fix perl path
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-05-01 09:14:16 -05:00

33 lines
987 B
Nix

{ stdenv, fetchurl, ocaml, findlib, pkgconfig, gmp, perl }:
let
ocaml_version = (builtins.parseDrvName ocaml.name).version;
in
stdenv.mkDerivation rec {
name = "zarith-${version}";
version = "1.2.1";
src = fetchurl {
url = "http://forge.ocamlcore.org/frs/download.php/1199/${name}.tgz";
sha256 = "0i21bsx41br0jgw8xmlpnky5zamzqkpbykrq0z53z7ar77602s4i";
};
buildInputs = [ ocaml findlib pkgconfig gmp perl ];
patchPhase = ''
substituteInPlace ./z_pp.pl --replace '/usr/bin/perl' '${perl}/bin/perl'
'';
configurePhase = ''
./configure -installdir $out/lib/ocaml/${ocaml_version}/site-lib
'';
preInstall = "mkdir -p $out/lib/ocaml/${ocaml_version}/site-lib";
meta = {
description = "fast, arbitrary precision OCaml integers";
homepage = "http://forge.ocamlcore.org/projects/zarith";
license = stdenv.lib.licenses.lgpl2;
platforms = ocaml.meta.platforms;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}