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: caf44a5dd3d5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 970c2cc35fab
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 3, 2017

  1. Copy the full SHA
    5605f9d View commit details
  2. Merge pull request #27084 from lufia/update-gae-go

    google-app-engine-go-sdk: 1.9.53 -> 1.9.55
    FRidh authored Jul 3, 2017
    Copy the full SHA
    970c2cc View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/google-app-engine-go-sdk/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/google-app-engine-go-sdk/default.nix
Original file line number Diff line number Diff line change
@@ -4,17 +4,17 @@ with python27Packages;

stdenv.mkDerivation rec {
name = "google-app-engine-go-sdk-${version}";
version = "1.9.53";
version = "1.9.55";
src =
if stdenv.system == "x86_64-linux" then
fetchzip {
url = "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-${version}.zip";
sha256 = "04lfwf7ad7gi8xn891lz87b7pr2gyycgpaq96i0cgckrj2awayz2";
sha256 = "1gwrmqs69h3wbx6z0a7shdr8gn1qiwrkvh3pg6mi7dybwmd1x61h";
}
else
fetchzip {
url = "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_amd64-${version}.zip";
sha256 = "18hgl4wz3rhaklkwaxl8gm70h7l8k225f86da682kafawrr8zhv4";
sha256 = "0b8r2fqg9m285ifz0jahd4wasv7cq61nr6p1k664w021r5y5lbvr";
};

buildInputs = [python27 makeWrapper];