2020-03-27 07:33:21 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-12-28 14:56:08 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "age";
|
2020-09-21 04:27:40 +01:00
|
|
|
version = "1.0.0-beta5";
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "0km7a2826j3fk2nrkmgc990chrkcfz006wfw14yilsa4p2hmfl7m";
|
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}";
|
2020-09-21 04:27:40 +01:00
|
|
|
sha256 = "1hdbxd359z8zvnz7h8c4pa16nc7r8db36lx3gpks38lpi0r8hzqk";
|
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
|
|
|
}
|