2017-12-26 12:23:01 -08:00
|
|
|
{ multiStdenv, fetchurl }:
|
2015-05-22 02:30:39 -07:00
|
|
|
|
2017-06-20 16:12:38 -07:00
|
|
|
let version = "1.7.4"; in
|
2017-12-26 12:23:01 -08:00
|
|
|
multiStdenv.mkDerivation {
|
2015-05-22 02:30:39 -07:00
|
|
|
name = "statifier-${version}";
|
2009-07-09 14:34:29 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-13 18:17:07 -07:00
|
|
|
url = "mirror://sourceforge/statifier/statifier-${version}.tar.gz";
|
2017-06-20 16:12:38 -07:00
|
|
|
sha256 = "03lzkla6knjhh186b43cac410x2fmhi28pkmzb3d211n3zp5i9y8";
|
2009-07-09 14:34:29 -07:00
|
|
|
};
|
|
|
|
|
2015-05-22 02:30:39 -07:00
|
|
|
phaseNames = [ "patchPhase" "installPhase" ];
|
2009-07-09 14:34:29 -07:00
|
|
|
|
2015-05-22 02:30:39 -07:00
|
|
|
postPatch = ''
|
2009-07-09 14:34:29 -07:00
|
|
|
sed -e s@/usr/@"$out/"@g -i */Makefile src/statifier
|
2017-12-26 12:23:01 -08:00
|
|
|
sed -e s@/bin/bash@"${multiStdenv.shell}"@g -i src/*.sh
|
2015-05-22 02:30:39 -07:00
|
|
|
'';
|
2015-07-20 03:04:43 -07:00
|
|
|
|
2017-12-26 12:23:01 -08:00
|
|
|
meta = with multiStdenv.lib; {
|
2009-07-09 14:34:29 -07:00
|
|
|
description = "Tool for creating static Linux binaries";
|
2015-11-17 12:29:29 -08:00
|
|
|
platforms = platforms.linux;
|
2018-08-04 07:58:14 -07:00
|
|
|
license = licenses.gpl2;
|
2009-07-09 14:34:29 -07:00
|
|
|
};
|
|
|
|
}
|