docker-distribution: init at 2.5.1

This commit is contained in:
Robin Gloster 2016-09-18 20:50:38 +02:00
parent 9079bc08e5
commit 9838b80e91
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "distribution-${version}";
version = "2.5.1";
rev = "v${version}";
goPackagePath = "github.com/docker/distribution";
src = fetchFromGitHub {
owner = "docker";
repo = "distribution";
inherit rev;
sha256 = "08nxcsl9bc3k9gav2mkqccm5byrlfcgy6qaqaywiyza0b0cn4kdc";
};
meta = with stdenv.lib; {
description = "The Docker toolset to pack, ship, store, and deliver content";
license = licenses.asl20;
maintainers = [ maintainers.globin ];
platforms = platforms.unix;
};
}

View file

@ -12377,6 +12377,8 @@ in
docker-machine = callPackage ../applications/networking/cluster/docker-machine { };
docker-distribution = callPackage ../applications/virtualization/docker-distribution { };
doodle = callPackage ../applications/search/doodle { };
drumgizmo = callPackage ../applications/audio/drumgizmo { };