summary refs log tree commit diff
path: root/pkgs/tools/archivers/runzip/default.nix
blob: 9b2fd0eda5942d838168833239543a0f6c8ae8f5 (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, autoconf, automake, libtool, m4}:
stdenv.mkDerivation rec {
  baseName = "runzip";
  version = "1.4";
  name = "${baseName}-${version}";
  buildInputs = [libzip autoconf automake libtool m4];
  src = fetchFromGitHub {
    owner = "vlm";
    repo = "zip-fix-filename-encoding";
    rev = "v${version}";
    sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07";
  };
  preConfigure = ''
    autoreconf -iv
  '';
  meta = {
    inherit version;
    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;
  };
}