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

26 lines
669 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gcc_multi, glibc_multi }:
let version = "1.7.3"; in
stdenv.mkDerivation {
name = "statifier-${version}";
src = fetchurl {
2013-07-14 01:17:07 +00:00
url = "mirror://sourceforge/statifier/statifier-${version}.tar.gz";
sha256 = "0jc67kq3clkdwvahpr2bjp2zix4j7z7z8b7bcn1b3g3sybh1cbd6";
};
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
'';
meta = with stdenv.lib; {
description = "Tool for creating static Linux binaries";
platforms = with platforms; [ linux ];
};
}