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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
611 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libzip, libiconv, autoreconfHook }:
2015-12-27 13:23:52 +00:00
stdenv.mkDerivation rec {
version = "1.4";
pname = "runzip";
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libiconv libzip ];
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";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.unix;
2015-12-27 13:23:52 +00:00
};
}