summary refs log blame commit diff
path: root/pkgs/tools/archivers/runzip/default.nix
blob: c251cfe0dc30732cc78a85cb9712c9140bd133bd (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                         
 
                         
                  
                   
 

                                         
 





                                                                    
 
          
                                                                             


                                           

    
{ lib, stdenv, fetchFromGitHub, libzip, autoreconfHook }:

stdenv.mkDerivation rec {
  version = "1.4";
  pname = "runzip";

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