agebox: init at 0.5.2

This commit is contained in:
Thomas Gerbet 2021-06-20 17:03:49 +02:00
parent eacddc7f6e
commit d73437c73a
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "agebox";
version = "0.5.2";
src = fetchFromGitHub {
owner = "slok";
repo = pname;
rev = "v${version}";
sha256 = "0zn7jibhw5jd9wp1alx9ahj4szaig4a54ci3676kk5zqxr2hjz0c";
};
vendorSha256 = "0bc2pwz3yhzwqi0bcwqkkkrglg473qxhmz5s5955fvgajvjk7drn";
ldflags = [
"-s" "-w"
"-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 ];
};
}

View file

@ -3788,6 +3788,8 @@ in
age = callPackage ../tools/security/age { };
agebox = callPackage ../tools/security/agebox { };
brotli = callPackage ../tools/compression/brotli { };
biosdevname = callPackage ../tools/networking/biosdevname { };