mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
kzipmix: create package
This commit is contained in:
parent
34d8190e30
commit
ba54614773
25
pkgs/tools/compression/kzipmix/default.nix
Normal file
25
pkgs/tools/compression/kzipmix/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kzipmix-20091108";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://static.jonof.id.au/dl/kenutils/kzipmix-20091108-linux.tar.gz;
|
||||
sha256 = "19gyn8pblffdz1bf3xkbpzx8a8wn3xb0v411pqzmz5g5l6pm5gph";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp kzip zipmix $out/bin
|
||||
|
||||
patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/bin/kzip
|
||||
patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/bin/zipmix
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A tool that agressively optimizes the sizes of Zip archives";
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
homepage = http://advsys.net/ken/utils.htm;
|
||||
maintainers = [ stdenv.lib.maintainers.sander ];
|
||||
};
|
||||
}
|
@ -1377,6 +1377,8 @@ let
|
||||
kippo = callPackage ../servers/kippo { };
|
||||
|
||||
klavaro = callPackage ../games/klavaro {};
|
||||
|
||||
kzipmix = callPackage_i686 ../tools/compression/kzipmix { };
|
||||
|
||||
minidlna = callPackage ../tools/networking/minidlna {
|
||||
ffmpeg = ffmpeg_0_10;
|
||||
|
Loading…
Reference in New Issue
Block a user