biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / oras / default.nix
blobfe1c0d5db36b7572695221ce89099d27ff45d917
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, oras }:
3 buildGoModule rec {
4   pname = "oras";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "oras-project";
9     repo = "oras";
10     rev = "v${version}";
11     hash = "sha256-oWDxrxCrBU0quSpRLXZ0w1COuImVj4FzAmv8574x76o=";
12   };
14   vendorHash = "sha256-51keQmj1eGT3rJysnfTWIl8xoHfz3NPL/qXegc3wwNc=";
16   nativeBuildInputs = [ installShellFiles ];
18   excludedPackages = [ "./test/e2e" ];
20   ldflags = [
21     "-s"
22     "-w"
23     "-X oras.land/oras/internal/version.Version=${version}"
24     "-X oras.land/oras/internal/version.BuildMetadata="
25     "-X oras.land/oras/internal/version.GitTreeState=clean"
26   ];
28   postInstall = ''
29     installShellCompletion --cmd oras \
30       --bash <($out/bin/oras completion bash) \
31       --fish <($out/bin/oras completion fish) \
32       --zsh <($out/bin/oras completion zsh)
33   '';
35   doInstallCheck = true;
36   installCheckPhase = ''
37     runHook preInstallCheck
39     $out/bin/oras --help
40     $out/bin/oras version | grep "${version}"
42     runHook postInstallCheck
43   '';
45   passthru.tests.version = testers.testVersion {
46     package = oras;
47     command = "oras version";
48   };
50   meta = with lib; {
51     homepage = "https://oras.land/";
52     changelog = "https://github.com/oras-project/oras/releases/tag/v${version}";
53     description = "The ORAS project provides a way to push and pull OCI Artifacts to and from OCI Registries";
54     mainProgram = "oras";
55     license = licenses.asl20;
56     maintainers = with maintainers; [ jk developer-guy ];
57   };