biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / virtualization / docker / distribution.nix
blob8c2fec16186c3264a29b132f606c0fde8bd550d0
1 { lib, buildGoPackage, fetchFromGitHub }:
3 buildGoPackage rec {
4   pname = "distribution";
5   version = "2.8.3";
6   rev = "v${version}";
8   goPackagePath = "github.com/docker/distribution";
10   src = fetchFromGitHub {
11     owner = "docker";
12     repo = "distribution";
13     inherit rev;
14     sha256 = "sha256-6/clOTkI1JnDjb+crcHmjbQlaqffP/sntGqUB2ftajU=";
15   };
17   meta = with lib; {
18     description = "The Docker toolset to pack, ship, store, and deliver content";
19     license = licenses.asl20;
20     maintainers = [];
21     platforms = platforms.unix;
22   };