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: 3b30e4355bea
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 040fb6c1a07a
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Feb 18, 2018

  1. docker-credential-gcr: init at 1.4.3

    Docker authentication helper for Google Cloud (gcr.io) repositories
    suvash committed Feb 18, 2018
    Copy the full SHA
    c7e01ac View commit details

Commits on Feb 20, 2018

  1. Copy the full SHA
    8faa916 View commit details
  2. Merge pull request #35117 from suvash/add-docker-credential-gcr

    docker-credential-gcr: init at 1.4.3
    nlewo authored Feb 20, 2018
    Copy the full SHA
    040fb6c View commit details
Showing with 31 additions and 0 deletions.
  1. +1 −0 lib/maintainers.nix
  2. +28 −0 pkgs/tools/admin/docker-credential-gcr/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
1 change: 1 addition & 0 deletions lib/maintainers.nix
Original file line number Diff line number Diff line change
@@ -670,6 +670,7 @@
StillerHarpo = "Florian Engel <florianengel39@gmail.com>";
stumoss = "Stuart Moss <samoss@gmail.com>";
SuprDewd = "Bjarki Ágúst Guðmundsson <suprdewd@gmail.com>";
suvash = "Suvash Thapaliya <suvash+nixpkgs@gmail.com>";
swarren83 = "Shawn Warren <shawn.w.warren@gmail.com>";
swflint = "Samuel W. Flint <swflint@flintfam.org>";
swistak35 = "Rafał Łasocha <me@swistak35.com>";
28 changes: 28 additions & 0 deletions pkgs/tools/admin/docker-credential-gcr/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "docker-credential-gcr-${version}";
version = "1.4.3";

goPackagePath = "github.com/GoogleCloudPlatform/docker-credential-gcr";

src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = "docker-credential-gcr";
rev = "v${version}";
sha256 = "1xb88xjyyrdmjcgfv7fqdkv1ip3dpzsdif5vm7vkqvn83s5wj5df";
};

meta = with stdenv.lib; {
description = "A Docker credential helper for GCR (https://gcr.io) users";
longDescription = ''
docker-credential-gcr is Google Container Registry's Docker credential
helper. It allows for Docker clients v1.11+ to easily make
authenticated requests to GCR's repositories (gcr.io, eu.gcr.io, etc.).
'';
homepage = https://github.com/GoogleCloudPlatform/docker-credential-gcr;
license = licenses.asl20;
maintainers = with maintainers; [ suvash ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -14871,6 +14871,8 @@ with pkgs;

docker-distribution = callPackage ../applications/virtualization/docker-distribution { };

docker-credential-gcr = callPackage ../tools/admin/docker-credential-gcr { };

doodle = callPackage ../applications/search/doodle { };

dr14_tmeter = callPackage ../applications/audio/dr14_tmeter { };