nixpkgs/pkgs/tools/archivers/runzip/default.nix
Yuriy Taraday ee0389d810 runzip: enable for Darwin
It builds and works just fine on Darwin, it just needs explicit
libiconv dependency.
2022-07-15 19:00:18 +04:00

24 lines
611 B
Nix

{ lib, stdenv, fetchFromGitHub, libzip, libiconv, autoreconfHook }:
stdenv.mkDerivation rec {
version = "1.4";
pname = "runzip";
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libiconv libzip ];
src = fetchFromGitHub {
owner = "vlm";
repo = "zip-fix-filename-encoding";
rev = "v${version}";
sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07";
};
meta = {
description = "A tool to convert filename encoding inside a ZIP archive";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.unix;
};
}