vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / tools / compression / kzipmix / default.nix
blob9da423396593ba443ae223998796d469b23466d3
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "kzipmix";
5   version = "20200115";
7   src = fetchurl {
8     url = "http://static.jonof.id.au/dl/kenutils/kzipmix-${version}-linux.tar.gz";
9     sha256 = "sha256-ePgye0D6/ED53zx6xffLnYhkjed7SPU4BLOZQr9E3yA=";
10   };
12   installPhase = ''
13     mkdir -p $out/bin
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
18   '';
20   meta = with lib; {
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 ];
26   };