nixpkgs/pkgs/os-specific/linux/statifier/default.nix
Tobias Geerinckx-Rice 8d98f626a1 statifier 1.6.15 -> 1.7.3
Also switch to mkDerivation and fix build on amd64.
2015-05-25 13:35:55 +02:00

26 lines
669 B
Nix

{ stdenv, fetchurl, gcc_multi, glibc_multi }:
let version = "1.7.3"; in
stdenv.mkDerivation {
name = "statifier-${version}";
src = fetchurl {
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 ];
};
}