python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / dapper / default.nix
blobd2b36efdaedca7754e6332cd80c3f00e0ed219bd
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "dapper";
8   version = "0.6.0";
10   src = fetchFromGitHub {
11     owner = "rancher";
12     repo = "dapper";
13     rev = "v${version}";
14     sha256 = "sha256-V+lHnOmIWjI1qmoJ7+pp+cGmJAtSeY+r2I9zykswQzM=";
15   };
16   vendorSha256 = null;
18   patchPhase = ''
19     substituteInPlace main.go --replace 0.0.0 ${version}
20   '';
22   meta = with lib; {
23     description = "Docker build wrapper";
24     homepage = "https://github.com/rancher/dapper";
25     license = licenses.asl20;
26     platforms = platforms.linux;
27     maintainers = with maintainers; [ kuznero ];
28   };