nixpkgs/pkgs/tools/compression/upx/default.nix
Will Dietz a3b2ccb7b4 upx: 3.93 -> 3.94
* Use release tarball
* Cleanup a bit
2017-06-21 18:54:10 -05:00

29 lines
717 B
Nix

{stdenv, fetchurl, fetchFromGitHub, ucl, zlib, perl}:
stdenv.mkDerivation rec {
name = "upx-${version}";
version = "3.94";
src = fetchurl {
url = "https://github.com/upx/upx/releases/download/v3.94/upx-3.94-src.tar.xz";
sha256 = "08anybdliqsbsl6x835iwzljahnm9i7v26icdjkcv33xmk6p5vw1";
};
buildInputs = [ ucl zlib perl ];
preConfigure = "
export UPX_UCLDIR=${ucl}
cd src
";
makeFlags = [ "CHECK_WHITESPACE=true" ];
installPhase = "mkdir -p $out/bin ; cp upx.out $out/bin/upx";
meta = {
homepage = https://upx.github.io/;
description = "The Ultimate Packer for eXecutables";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}