1 { lib, stdenv, fetchFromGitHub, libzip, libiconv, autoreconfHook }:
3 stdenv.mkDerivation rec {
7 nativeBuildInputs = [ autoreconfHook ];
8 buildInputs = [ libiconv libzip ];
10 src = fetchFromGitHub {
12 repo = "zip-fix-filename-encoding";
14 sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07";
18 description = "Tool to convert filename encoding inside a ZIP archive";
19 license = lib.licenses.bsd2;
20 maintainers = [ lib.maintainers.raskin ];
21 platforms = lib.platforms.unix;
22 mainProgram = "runzip";