nixpkgs/pkgs/tools/security/agebox/default.nix

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

30 lines
709 B
Nix
Raw Normal View History

2021-06-20 15:03:49 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "agebox";
version = "0.6.1";
2021-06-20 15:03:49 +00:00
src = fetchFromGitHub {
owner = "slok";
repo = pname;
rev = "v${version}";
2023-09-21 14:23:40 +00:00
hash = "sha256-W6/v5BIl+k6tMan/Wdua7mHKMsq23QZN13Cy24akJr4=";
2021-06-20 15:03:49 +00:00
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-PLeNTlQ0OMcupfbVN/KGb0iJYf3Jbcevg8gTcKHpn8s=";
2021-06-20 15:03:49 +00:00
ldflags = [
2023-09-21 14:23:40 +00:00
"-s"
"-w"
2021-06-20 15:03:49 +00:00
"-X main.Version=${version}"
];
meta = with lib; {
homepage = "https://github.com/slok/agebox";
changelog = "https://github.com/slok/agebox/releases/tag/v${version}";
description = "Age based repository file encryption gitops tool";
license = licenses.asl20;
maintainers = with maintainers; [ lesuisse ];
};
}