2012-01-16 10:20:13 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2012-02-29 12:51:06 +00:00
|
|
|
let
|
|
|
|
|
2012-07-30 23:40:41 +01:00
|
|
|
version = "6.37.0";
|
|
|
|
sha256 = "99ff58080ed154cc4bd70f915fe4760dffb026a1c0447caa0b3bdb982b24b0a8";
|
2012-02-29 12:51:06 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "ocaml-make-${version}";
|
2012-01-16 10:20:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-07-30 23:40:41 +01:00
|
|
|
url = "http://bitbucket.org/mmottl/ocaml-makefile/downloads/ocaml-makefile-${version}.tar.gz";
|
2012-02-29 12:51:06 +00:00
|
|
|
inherit sha256;
|
2012-01-16 10:20:13 +00:00
|
|
|
};
|
|
|
|
|
2012-02-29 12:51:06 +00:00
|
|
|
installPhase = ''
|
2014-06-30 13:56:10 +01:00
|
|
|
mkdir -p "$out/include/"
|
2012-02-29 12:51:06 +00:00
|
|
|
cp OCamlMakefile "$out/include/"
|
|
|
|
'';
|
2012-01-16 10:20:13 +00:00
|
|
|
|
2012-02-29 12:51:06 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
2012-01-16 10:20:13 +00:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.ocaml.info/home/ocaml_sources.html;
|
2012-01-16 10:20:13 +00:00
|
|
|
description = "Generic OCaml Makefile for GNU Make";
|
|
|
|
license = "LGPL";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-01-16 10:20:13 +00:00
|
|
|
};
|
|
|
|
}
|