runzip: init at 1.4

This commit is contained in:
Michael Raskin 2015-12-27 14:23:52 +01:00
parent bd3ef3d1be
commit 56aa0ff1d9
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{stdenv, fetchFromGitHub, libzip, autoconf, automake, libtool, m4}:
stdenv.mkDerivation rec {
baseName = "runzip";
version = "1.4";
name = "${baseName}-${version}";
buildInputs = [libzip autoconf automake libtool m4];
src = fetchFromGitHub {
owner = "vlm";
repo = "zip-fix-filename-encoding";
rev = "v${version}";
sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07";
};
preConfigure = ''
autoreconf -iv
'';
meta = {
inherit version;
description = ''A tool to convert filename encoding inside a ZIP archive'';
license = stdenv.lib.licenses.bsd2 ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -2964,6 +2964,8 @@ let
rtorrent = callPackage ../tools/networking/p2p/rtorrent { };
rubber = callPackage ../tools/typesetting/rubber { };
runzip = callPackage ../tools/archivers/runzip { };
rxp = callPackage ../tools/text/xml/rxp { };