nixpkgs/pkgs/os-specific/linux/statifier/default.nix

26 lines
653 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gcc_multi, glibc_multi }:
2017-06-20 23:12:38 +00:00
let version = "1.7.4"; in
stdenv.mkDerivation {
name = "statifier-${version}";
src = fetchurl {
2013-07-14 01:17:07 +00:00
url = "mirror://sourceforge/statifier/statifier-${version}.tar.gz";
2017-06-20 23:12:38 +00:00
sha256 = "03lzkla6knjhh186b43cac410x2fmhi28pkmzb3d211n3zp5i9y8";
};
buildInputs = [ gcc_multi glibc_multi ];
phaseNames = [ "patchPhase" "installPhase" ];
postPatch = ''
sed -e s@/usr/@"$out/"@g -i */Makefile src/statifier
sed -e s@/bin/bash@"${stdenv.shell}"@g -i src/*.sh
'';
2015-07-20 10:04:43 +00:00
meta = with stdenv.lib; {
description = "Tool for creating static Linux binaries";
platforms = platforms.linux;
};
}