mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
ocamlPackages.buildOasis: fix handling of installation prefix
This commit is contained in:
parent
f4a34b2c08
commit
885fb1406d
@ -23,7 +23,7 @@ stdenv.mkDerivation (args // {
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
oasis setup
|
||||
ocaml setup.ml -configure
|
||||
ocaml setup.ml -configure --prefix $OCAMLFIND_DESTDIR --exec-prefix $out
|
||||
ocaml setup.ml -build
|
||||
runHook postBuild
|
||||
'';
|
||||
@ -37,9 +37,7 @@ stdenv.mkDerivation (args // {
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out
|
||||
sed -i s+/usr/local+$out+g setup.ml
|
||||
sed -i s+/usr/local+$out+g setup.data
|
||||
prefix=$OCAMLFIND_DESTDIR ocaml setup.ml -install
|
||||
ocaml setup.ml -install
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user