fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, stdenv, fetchFromGitHub, libzip, libiconv, autoreconfHook }:
2
3stdenv.mkDerivation rec {
4 version = "1.4";
5 pname = "runzip";
6
7 nativeBuildInputs = [ autoreconfHook ];
8 buildInputs = [ libiconv libzip ];
9
10 src = fetchFromGitHub {
11 owner = "vlm";
12 repo = "zip-fix-filename-encoding";
13 rev = "v${version}";
14 sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07";
15 };
16
17 meta = {
18 description = "A 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 };
23}