Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0732c3993bb5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 43459327624b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 25, 2019

  1. go-protobuf: 2018-01-04 -> 1.3.1 (#63744)

    q3k authored and kalbasit committed Jun 25, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    4345932 View commit details
Showing with 7 additions and 8 deletions.
  1. +7 −8 pkgs/development/tools/go-protobuf/default.nix
15 changes: 7 additions & 8 deletions pkgs/development/tools/go-protobuf/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
name = "go-protobuf-${version}";
version = "2018-01-04";
rev = "1e59b77b52bf8e4b449a57e6f79f21226d571845";

goPackagePath = "github.com/golang/protobuf";
version = "1.3.1";

src = fetchFromGitHub {
inherit rev;
owner = "golang";
repo = "protobuf";
sha256 = "19bkh81wnp6njg3931wky6hsnnl2d1ig20vfjxpv450sd3k6yys8";
rev = "v${version}";
sha256 = "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl";
};

modSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";

meta = with stdenv.lib; {
homepage = "https://github.com/golang/protobuf";
description = " Go bindings for protocol buffer";