1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "http://static.jonof.id.au/dl/kenutils/kzipmix-${version}-linux.tar.gz";
9 sha256 = "sha256-ePgye0D6/ED53zx6xffLnYhkjed7SPU4BLOZQr9E3yA=";
14 cp amd64/{kzip,zipmix} $out/bin
16 patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux.so.2 $out/bin/kzip
17 patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux.so.2 $out/bin/zipmix
21 description = "Tool that aggressively optimizes the sizes of Zip archives";
22 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
23 license = licenses.unfree;
24 homepage = "http://advsys.net/ken/utils.htm";
25 maintainers = [ maintainers.sander ];