python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / vendir / default.nix
blob13c8ff8d0df1e8d74e831c18f322408abba49fa1
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "vendir";
5   version = "0.32.0";
7   src = fetchFromGitHub {
8     owner = "vmware-tanzu";
9     repo = "carvel-vendir";
10     rev = "v${version}";
11     sha256 = "sha256-VuOf+8PgscoHNVPO8gDoFGGPSBxO5BNLpmUJnYL898s=";
12   };
14   vendorSha256 = null;
16   subPackages = [ "cmd/vendir" ];
18   meta = with lib; {
19     description = "CLI tool to vendor portions of git repos, github releases, helm charts, docker image contents, etc. declaratively";
20     homepage = "https://carvel.dev/vendir/";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ russell ];
23   };