mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
Merge pull request #220933 from figsoda/unzrip
unzrip: init at unstable-2023-03-13
This commit is contained in:
commit
0266dd07d5
35
pkgs/tools/compression/unzrip/default.nix
Normal file
35
pkgs/tools/compression/unzrip/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, zstd
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "unzrip";
|
||||
version = "unstable-2023-03-13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "quininer";
|
||||
repo = "unzrip";
|
||||
rev = "bd2dffd43c3235857500190571602f3ce58c5f70";
|
||||
hash = "sha256-Ih47xF4JYQf10RuTnfJJGUAJwyxDxCAdTTCdwGf4i/U=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-11UESSKvTcr6Wa0cASRSQ55kBbRL5AelI6thv3oi0sI=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
zstd
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unzip implementation, support for parallel decompression, automatic detection encoding";
|
||||
homepage = "https://github.com/quininer/unzrip";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
@ -13076,6 +13076,8 @@ with pkgs;
|
||||
|
||||
untrunc-anthwlock = callPackage ../tools/video/untrunc-anthwlock { };
|
||||
|
||||
unzrip = callPackage ../tools/compression/unzrip { };
|
||||
|
||||
up = callPackage ../tools/misc/up { };
|
||||
|
||||
upbound = callPackage ../development/tools/upbound { };
|
||||
|
Loading…
Reference in New Issue
Block a user