nixpkgs/pkgs/tools/compression/upx/default.nix
Lluís Batlle i Rossell 75e0d28624 Updating upx - now it builds with gcc 4.4
svn path=/nixpkgs/trunk/; revision=20160
2010-02-22 08:08:23 +00:00

21 lines
504 B
Nix

{stdenv, fetchurl, ucl, zlib}:
stdenv.mkDerivation {
name = "upx-3.04";
src = fetchurl {
url = http://upx.sourceforge.net/download/upx-3.04-src.tar.bz2;
sha256 = "15vxjzaf21vfanidv6d0zf37jgy4xfhn399nc66651b064pnbf39";
};
buildInputs = [ ucl zlib ];
preConfigure = "cd src";
installPhase = "ensureDir $out/bin ; cp upx.out $out/bin/upx";
meta = {
homepage = http://upx.sourceforge.net/;
description = "The Ultimate Packer for eXecutables";
license = "GPLv2+";
};
}