chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pz / pzip / package.nix
blob625f1f4492bc4126083b13b3f671608bafbafe9b
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , unzip
5 }:
7 buildGoModule rec {
8   pname = "pzip";
9   version = "0.2.0";
11   src = fetchFromGitHub {
12     owner = "ybirader";
13     repo = "pzip";
14     rev = "v${version}";
15     hash = "sha256-bb2TSSyA7TwgoV53M/7WkNcTq8F0EjCA7ObHfnGL9l0=";
16   };
18   vendorHash = "sha256-MRZlv4eN1Qbu+QXr//YexTDYSK4pCXAPO7VvGqZhjho=";
20   nativeBuildInputs = [
21     unzip
22   ];
24   ldflags = [ "-s" "-w" ];
26   meta = with lib; {
27     description = "Fast concurrent zip archiver and extractor";
28     homepage = "https://github.com/ybirader/pzip";
29     changelog = "https://github.com/ybirader/pzip/releases/tag/${src.rev}";
30     license = licenses.asl20;
31     maintainers = with maintainers; [ figsoda ];
32     mainProgram = "pzip";
33   };