nixpkgs/pkgs/tools/compression/unzrip/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
794 B
Nix
Raw Normal View History

2023-03-13 02:42:45 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, zstd
}:
rustPlatform.buildRustPackage rec {
pname = "unzrip";
version = "unstable-2023-04-16";
2023-03-13 02:42:45 +00:00
src = fetchFromGitHub {
owner = "quininer";
repo = "unzrip";
rev = "14ba4b4c9ff9c80444ecef762d665acaa5aecfce";
hash = "sha256-QYu4PXWQGagj7r8lLs0IngIXzt6B8uq2qonycaGDg6g=";
2023-03-13 02:42:45 +00:00
};
cargoHash = "sha256-9CjKSdd+E2frI8VvdOawYQ3u+KF22xw9kBpnAufRUG0=";
2023-03-13 02:42:45 +00:00
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 ];
2023-11-23 02:51:17 +00:00
mainProgram = "unzrip";
2023-03-13 02:42:45 +00:00
};
}