summary refs log tree commit diff
path: root/pkgs/tools/archivers/runzip/default.nix
blob: f99ee963dbe6c0392b8876e695020dcdf73bf3b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub, libzip, autoreconfHook }:

stdenv.mkDerivation rec {
  version = "1.4";
  name = "runzip-${version}";

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ 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 = stdenv.lib.licenses.bsd2 ;
    maintainers = [stdenv.lib.maintainers.raskin];
    platforms = stdenv.lib.platforms.linux;
  };
}