docker-distribution: init at 2.5.1
This commit is contained in:
parent
9079bc08e5
commit
9838b80e91
@ -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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user