nixpkgs/pkgs/tools/archivers/runzip/default.nix

23 lines
591 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, libzip, autoreconfHook }:
2015-12-27 13:23:52 +00:00
stdenv.mkDerivation rec {
version = "1.4";
name = "runzip-${version}";
buildInputs = [ libzip autoreconfHook ];
2015-12-27 13:23:52 +00:00
src = fetchFromGitHub {
owner = "vlm";
repo = "zip-fix-filename-encoding";
rev = "v${version}";
sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07";
};
2015-12-27 13:23:52 +00:00
meta = {
description = "A tool to convert filename encoding inside a ZIP archive";
2015-12-27 13:23:52 +00:00
license = stdenv.lib.licenses.bsd2 ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
}