mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
25 lines
637 B
Nix
25 lines
637 B
Nix
{ lib, stdenv, fetchFromGitHub, libzip, libiconv, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4";
|
|
pname = "runzip";
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ libiconv libzip ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vlm";
|
|
repo = "zip-fix-filename-encoding";
|
|
rev = "v${version}";
|
|
sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07";
|
|
};
|
|
|
|
meta = {
|
|
description = "Tool to convert filename encoding inside a ZIP archive";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = [ lib.maintainers.raskin ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "runzip";
|
|
};
|
|
}
|