biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / wire / default.nix
blob540f5c6a845e9cb8c18448ac0cf6ca9e18646884
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "wire";
5   version = "0.6.0";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "wire";
10     rev = "v${version}";
11     hash = "sha256-bV/bb577JzGF37HmvRprxr+GWcLLiFRisURwtGDbqko=";
12   };
14   patches = [
15     # Bump the minimum version of Go required to compile packages in this module,
16     # as `golang.org/x/tools` requires go1.18 or later.
17     ./go-modules.patch
18   ];
20   vendorHash = "sha256-7IW97ZvCGlKCiVh8mKQutTdAxih7oFkXrKo4h3Pl9YY=";
22   subPackages = [ "cmd/wire" ];
24   ldflags = [ "-s" "-w" ];
26   meta = with lib; {
27     homepage = "https://github.com/google/wire";
28     description = "A code generation tool that automates connecting components using dependency injection";
29     mainProgram = "wire";
30     license = licenses.asl20;
31     maintainers = with maintainers; [ svrana ];
32   };