2020-03-27 07:33:21 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-12-28 14:56:08 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "age";
|
2021-01-17 05:34:23 +00:00
|
|
|
version = "1.0.0-beta6";
|
|
|
|
vendorSha256 = "sha256-FTByNpLkWWHAWe5wVDRBGtKap/5+XGHeBMQAIdlPCkA=";
|
2019-12-28 14:56:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FiloSottile";
|
|
|
|
repo = "age";
|
2020-06-28 16:17:43 +01:00
|
|
|
rev = "v${version}";
|
2021-01-17 05:34:23 +00:00
|
|
|
sha256 = "sha256-1LCcCEf2/R0am0jpA8yKl44+AoUFkbepxp9V6/nZkBQ=";
|
2019-12-28 14:56:08 +00:00
|
|
|
};
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-12-28 14:56:08 +00:00
|
|
|
homepage = "https://age-encryption.org/";
|
|
|
|
description = "Modern encryption tool with small explicit keys";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ tazjin ];
|
|
|
|
};
|
2020-06-28 16:17:43 +01:00
|
|
|
}
|