mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
sqitchPg: fix build on darwin
This commit is contained in:
parent
96d73edaf3
commit
f42f6df759
|
@ -1,4 +1,4 @@
|
|||
{ name, stdenv, perl, makeWrapper, sqitchModule, databaseModule }:
|
||||
{ name, stdenv, perl, makeWrapper, sqitchModule, databaseModule, shortenPerlShebang }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "${name}-${sqitchModule.version}";
|
||||
|
@ -8,6 +8,8 @@ stdenv.mkDerivation {
|
|||
src = sqitchModule;
|
||||
dontBuild = true;
|
||||
|
||||
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin shortenPerlShebang;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
for d in bin/sqitch etc lib share ; do
|
||||
|
@ -17,6 +19,8 @@ stdenv.mkDerivation {
|
|||
ln -s ${sqitchModule}/$d $out/$d
|
||||
fi
|
||||
done
|
||||
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
shortenPerlShebang $out/bin/sqitch
|
||||
'';
|
||||
dontStrip = true;
|
||||
postFixup = "wrapProgram $out/bin/sqitch --prefix PERL5LIB : $PERL5LIB";
|
||||
|
|
Loading…
Reference in a new issue