mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
aacbcb197d
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
testers,
|
|
distribution,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "distribution";
|
|
version = "3.0.0-beta.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "distribution";
|
|
repo = "distribution";
|
|
rev = "v${version}";
|
|
hash = "sha256-tiTwrcRtOEIs1sCkzHXY1TPYw0TOdDvM2Y8YdgQjEmI=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
checkFlags = [
|
|
# TestHTTPChecker: requires internet access.
|
|
# TestInMemoryDriverSuite: timeout after 10 minutes, looks like a deadlock.
|
|
"-skip=^TestHTTPChecker$|^TestInMemoryDriverSuite$"
|
|
];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = distribution;
|
|
version = "v${version}";
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Toolkit to pack, ship, store, and deliver container content";
|
|
longDescription = ''
|
|
Distribution is a Open Source Registry implementation for storing and distributing container
|
|
images and other content using the OCI Distribution Specification. The goal of this project
|
|
is to provide a simple, secure, and scalable base for building a large scale registry solution
|
|
or running a simple private registry.
|
|
'';
|
|
homepage = "https://distribution.github.io/distribution/";
|
|
changelog = "https://github.com/distribution/distribution/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
mainProgram = "registry";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|