age: init at v1.0.0-beta2 (#76608)

age: init at v1.0.0-beta2
This commit is contained in:
Jörg Thalheim 2019-12-28 15:25:10 +00:00 committed by GitHub
commit 8bd736c789
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "age";
version = "1.0.0-beta2";
goPackagePath = "github.com/FiloSottile/age";
modSha256 = "0kwdwhkxgqjd8h1p7pm4h4xidp2vk840h1j4qya4qz8bjf9vskl9";
subPackages = [
"cmd/age"
"cmd/age-keygen"
];
src = fetchFromGitHub {
owner = "FiloSottile";
repo = "age";
rev = "v${version}";
sha256 = "1n1ww8yjw0mg00dvnfmggww9kwp1hls0a85iv6vx9k89mzv8mdrq";
};
meta = with lib; {
homepage = "https://age-encryption.org/";
description = "Modern encryption tool with small explicit keys";
license = licenses.bsd3;
maintainers = with maintainers; [ tazjin ];
};
}

View file

@ -2518,6 +2518,8 @@ in
caps2esc = callPackage ../tools/inputmethods/interception-tools/caps2esc.nix { };
};
age = callPackage ../tools/security/age { };
brotli = callPackage ../tools/compression/brotli { };
biosdevname = callPackage ../tools/networking/biosdevname { };