treewide: move "extensions" drvs to dir

This cleans up the tree for pkgs/applications somewhat. Should not
change any hashes.
This commit is contained in:
Matthew Bauer
2018-04-17 13:50:49 -05:00
parent 6c182dd14d
commit 52893d5276
25 changed files with 24 additions and 24 deletions
@@ -0,0 +1,23 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "distribution-${version}";
version = "2.6.2";
rev = "v${version}";
goPackagePath = "github.com/docker/distribution";
src = fetchFromGitHub {
owner = "docker";
repo = "distribution";
inherit rev;
sha256 = "0nj4xd72mik4pj8g065cqb0yjmgpj5ppsqf2k5ibz9f68c39c00b";
};
meta = with stdenv.lib; {
description = "The Docker toolset to pack, ship, store, and deliver content";
license = licenses.asl20;
maintainers = [ maintainers.globin ];
platforms = platforms.unix;
};
}