python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / relic / default.nix
blob6fb5507b87d6092a9a0e54bafded0d22f635ec49
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "relic";
5   version = "7.5.3";
7   src = fetchFromGitHub {
8     owner = "sassoftware";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-urueDWvHhDsIiLIAatAforBM//UEJz8wUHEVyhwV7JY=";
12   };
14   vendorSha256 = "sha256-wlylASK2RES0nbf6UZHJBrYQaz9jrq5j7/KF1wYOqE0=";
16   meta = with lib; {
17     homepage = "https://github.com/sassoftware/relic";
18     description = "A service and a tool for adding digital signatures to operating system packages for Linux and Windows";
19     license = licenses.asl20;
20     maintainers = with maintainers; [ strager ];
21     platforms = platforms.unix;
22   };