fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ name, stdenv, perl, makeWrapper, sqitchModule, databaseModule }:
2stdenv.mkDerivation {
3 name = "${name}-${sqitchModule.version}";
4 buildInputs = [ perl makeWrapper sqitchModule databaseModule ];
5 unpackPhase = ":";
6 buildPhase = ":";
7 installPhase = ''
8 mkdir -p $out/bin
9 for d in bin/sqitch etc lib share ; do
10 ln -s ${sqitchModule}/$d $out/$d
11 done
12 '';
13 dontStrip = true;
14 postFixup = "wrapProgram $out/bin/sqitch --prefix PERL5LIB : $PERL5LIB";
15}