mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
OCamlMakefile update.
svn path=/nixpkgs/trunk/; revision=32687
This commit is contained in:
parent
d4960f72be
commit
d9f5e277a5
@ -1,16 +1,24 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml-make-6.33.0";
|
||||
let
|
||||
|
||||
version = "6.36.0";
|
||||
sha256 = "7c9a771d79bf945050dc7530957f4b61669976177818185e64c002cbfd75e3a2";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "ocaml-make-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.ocaml.info/ocaml_sources/ocaml-make-6.33.0.tar.gz";
|
||||
sha256 = "3054303ba04e4bbbe038e08310fabc3e5a0e3899bbba33d9ac5ed7a1b9d1e05a";
|
||||
url = "http://hg.ocaml.info/release/ocaml-make/archive/release-${version}.tar.bz2";
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
installPhase = ''
|
||||
ensureDir "$out/include/"
|
||||
cp OCamlMakefile "$out/include/"
|
||||
'';
|
||||
|
||||
installPhase = "cp OCamlMakefile $out";
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.ocaml.info/home/ocaml_sources.html";
|
||||
|
5
pkgs/development/ocaml-modules/ocamlmake/setup-hook.sh
Normal file
5
pkgs/development/ocaml-modules/ocamlmake/setup-hook.sh
Normal file
@ -0,0 +1,5 @@
|
||||
addOcamlMakefile () {
|
||||
export OCAMLMAKEFILE="@out@/include/OCamlMakefile"
|
||||
}
|
||||
|
||||
envHooks=(${envHooks[@]} addOcamlMakefile)
|
@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
||||
sha256 = "ff6d863c42b4ef798f50ff5eff77b47b77b5c0d28b6f65364e8a436a216dc591";
|
||||
};
|
||||
|
||||
buildInputs = [ocaml findlib python];
|
||||
buildInputs = [ocaml findlib python ocaml_make];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
@ -26,7 +26,7 @@ stdenv.mkDerivation {
|
||||
|
||||
# fix some paths to the appropriate store paths.
|
||||
patchPhase = ''
|
||||
sed -i "Makefile" -e's|/usr/include/OCamlMakefile|${ocaml_make}|g'
|
||||
sed -i "Makefile" -e's|/usr/include/OCamlMakefile|${ocaml_make}/include/OCamlMakefile|g'
|
||||
sed -i "Makefile" -e's|/usr|${python}|g'
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user