biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / compression / unzrip / default.nix
blob2e92fadd39a912f7c8257061afeafaf99f68f712
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , zstd
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "unzrip";
10   version = "unstable-2023-04-16";
12   src = fetchFromGitHub {
13     owner = "quininer";
14     repo = "unzrip";
15     rev = "14ba4b4c9ff9c80444ecef762d665acaa5aecfce";
16     hash = "sha256-QYu4PXWQGagj7r8lLs0IngIXzt6B8uq2qonycaGDg6g=";
17   };
19   cargoHash = "sha256-9CjKSdd+E2frI8VvdOawYQ3u+KF22xw9kBpnAufRUG0=";
21   nativeBuildInputs = [
22     pkg-config
23   ];
25   buildInputs = [
26     zstd
27   ];
29   meta = with lib; {
30     description = "Unzip implementation, support for parallel decompression, automatic detection encoding";
31     homepage = "https://github.com/quininer/unzrip";
32     license = licenses.mit;
33     maintainers = with maintainers; [ figsoda ];
34     mainProgram = "unzrip";
35   };