29 lines
747 B
Nix
Raw Normal View History

2015-03-18 10:32:46 -03:00
{ name, stdenv, perl, makeWrapper, sqitchModule, databaseModule }:
2015-03-18 10:32:46 -03:00
stdenv.mkDerivation {
name = "${name}-${sqitchModule.version}";
2015-03-18 10:32:46 -03:00
buildInputs = [ perl makeWrapper sqitchModule databaseModule ];
src = sqitchModule;
dontBuild = true;
2015-03-18 10:32:46 -03:00
installPhase = ''
2015-03-15 09:59:41 -04:00
mkdir -p $out/bin
2015-03-15 11:06:01 -04:00
for d in bin/sqitch etc lib share ; do
2017-10-14 02:10:35 -05:00
# make sure dest alreay exists before symlink
# this prevents installing a broken link into the path
if [ -e ${sqitchModule}/$d ]; then
ln -s ${sqitchModule}/$d $out/$d
fi
2015-03-15 11:06:01 -04:00
done
2015-03-15 09:59:41 -04:00
'';
2015-03-18 10:32:46 -03:00
dontStrip = true;
postFixup = "wrapProgram $out/bin/sqitch --prefix PERL5LIB : $PERL5LIB";
meta = {
platforms = stdenv.lib.platforms.unix;
inherit (sqitchModule.meta) license;
};
2015-03-15 09:59:41 -04:00
}