wire: init at v0.4.0
This commit is contained in:
parent
75513fb361
commit
9e4e26d922
24
pkgs/development/tools/wire/default.nix
Normal file
24
pkgs/development/tools/wire/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "wire";
|
||||||
|
version = "0.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "google";
|
||||||
|
repo = "wire";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0fYXo/LnxKV/qoaP59XCyEtLLAysZm/WhRdm3RnLdvw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "ZFUX4LgPte6oAf94D82Man/P9VMpx+CDNCTMBwiy9Fc=";
|
||||||
|
|
||||||
|
subPackages = [ "cmd/wire" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/google/wire";
|
||||||
|
description = "A code generation tool that automates connecting components using dependency injection";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ svrana ];
|
||||||
|
};
|
||||||
|
}
|
@ -8228,6 +8228,8 @@ in
|
|||||||
|
|
||||||
wimboot = callPackage ../tools/misc/wimboot { };
|
wimboot = callPackage ../tools/misc/wimboot { };
|
||||||
|
|
||||||
|
wire = callPackage ../development/tools/wire { };
|
||||||
|
|
||||||
wireguard-tools = callPackage ../tools/networking/wireguard-tools { };
|
wireguard-tools = callPackage ../tools/networking/wireguard-tools { };
|
||||||
|
|
||||||
woff2 = callPackage ../development/web/woff2 { };
|
woff2 = callPackage ../development/web/woff2 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user