mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
go-protobuf: init at 2018-01-04
With the commit 1e59b77b52bf8e4b449a57e6f79f21226d571845
This commit is contained in:
parent
0a07a52506
commit
3b646f79e0
24
pkgs/development/tools/go-protobuf/default.nix
Normal file
24
pkgs/development/tools/go-protobuf/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "go-protobuf-${version}";
|
||||
version = "2018-01-04";
|
||||
rev = "1e59b77b52bf8e4b449a57e6f79f21226d571845";
|
||||
|
||||
goPackagePath = "github.com/golang/protobuf";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "golang";
|
||||
repo = "protobuf";
|
||||
sha256 = "19bkh81wnp6njg3931wky6hsnnl2d1ig20vfjxpv450sd3k6yys8";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/golang/protobuf";
|
||||
description = " Go bindings for protocol buffer";
|
||||
maintainers = with maintainers; [ lewo ];
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -13111,6 +13111,8 @@ with pkgs;
|
||||
|
||||
go-bindata-assetfs = callPackage ../development/tools/go-bindata-assetfs { };
|
||||
|
||||
go-protobuf = callPackage ../development/tools/go-protobuf { };
|
||||
|
||||
gocode = callPackage ../development/tools/gocode { };
|
||||
|
||||
goconvey = callPackage ../development/tools/goconvey { };
|
||||
|
Loading…
Reference in New Issue
Block a user