nixpkgs/pkgs/development/tools/relic/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
845 B
Nix
Raw Normal View History

2023-06-02 13:26:55 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, testers
, relic
}:
2022-03-12 06:06:56 +00:00
buildGoModule rec {
pname = "relic";
2024-02-06 06:02:23 +00:00
version = "7.6.2";
2022-03-12 06:06:56 +00:00
src = fetchFromGitHub {
owner = "sassoftware";
repo = pname;
rev = "v${version}";
2024-02-06 06:02:23 +00:00
sha256 = "sha256-T76+Ftky1rSIqEoKE3RLsf6g2gguVJgYFflWmyEhdEk=";
2022-03-12 06:06:56 +00:00
};
2024-02-06 06:02:23 +00:00
vendorHash = "sha256-5mgqIw3BV88rEF3ALD3pLhm658yUUFf44hQFSw085cU=";
2022-03-12 06:06:56 +00:00
2023-06-02 13:26:19 +00:00
ldflags = [
"-s"
"-w"
"-X=main.version=${version}"
"-X=main.commit=${src.rev}"
];
2023-06-02 13:26:55 +00:00
passthru.tests = {
version = testers.testVersion {
package = relic;
};
};
2022-03-12 06:06:56 +00:00
meta = with lib; {
homepage = "https://github.com/sassoftware/relic";
description = "A service and a tool for adding digital signatures to operating system packages for Linux and Windows";
license = licenses.asl20;
maintainers = with maintainers; [ strager ];
};
}