biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / relic / default.nix
blob2fa4fcb13571d4247e4efaa81ef1129beac1b790
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , testers
5 , relic
6 }:
8 buildGoModule rec {
9   pname = "relic";
10   version = "7.6.2";
12   src = fetchFromGitHub {
13     owner = "sassoftware";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-T76+Ftky1rSIqEoKE3RLsf6g2gguVJgYFflWmyEhdEk=";
17   };
19   vendorHash = "sha256-5mgqIw3BV88rEF3ALD3pLhm658yUUFf44hQFSw085cU=";
21   ldflags = [
22     "-s"
23     "-w"
24     "-X=main.version=${version}"
25     "-X=main.commit=${src.rev}"
26   ];
28   passthru.tests = {
29     version = testers.testVersion {
30       package = relic;
31     };
32   };
34   meta = with lib; {
35     homepage = "https://github.com/sassoftware/relic";
36     description = "A service and a tool for adding digital signatures to operating system packages for Linux and Windows";
37     mainProgram = "relic";
38     license = licenses.asl20;
39     maintainers = with maintainers; [ strager ];
40   };