My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/tools/ocaml/ocamlscript/default.nix

27 lines
760 B

{lib, stdenv, fetchurl, ocaml, findlib, camlp4}:
stdenv.mkDerivation {
name = "ocamlscript-2.0.3";
src = fetchurl {
url = "http://mjambon.com/releases/ocamlscript/ocamlscript-2.0.3.tar.gz";
sha256 = "1v1i24gijxwris8w4hi95r9swld6dm7jbry0zp72767a3g5ivlrd";
};
10 years ago
propagatedBuildInputs = [ ocaml findlib camlp4 ];
patches = [ ./Makefile.patch ];
buildFlags = [ "PREFIX=$(out)" ];
installFlags = [ "PREFIX=$(out)" ];
preInstall = "mkdir $out/bin";
createFindlibDestdir = true;
meta = with lib; {
homepage = "http://martin.jambon.free.fr/ocamlscript.html";
license = licenses.boost;
platforms = ocaml.meta.platforms or [];
description = "Natively-compiled OCaml scripts";
maintainers = [ maintainers.vbgl ];
};
}