2020-03-27 00:33:21 -07:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-12-28 06:56:08 -08:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "age";
|
2020-09-20 20:27:40 -07:00
|
|
|
version = "1.0.0-beta5";
|
2020-04-30 18:59:00 -07:00
|
|
|
vendorSha256 = "0km7a2826j3fk2nrkmgc990chrkcfz006wfw14yilsa4p2hmfl7m";
|
2019-12-28 06:56:08 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FiloSottile";
|
|
|
|
repo = "age";
|
2020-06-28 08:17:43 -07:00
|
|
|
rev = "v${version}";
|
2020-09-20 20:27:40 -07:00
|
|
|
sha256 = "1hdbxd359z8zvnz7h8c4pa16nc7r8db36lx3gpks38lpi0r8hzqk";
|
2019-12-28 06:56:08 -08:00
|
|
|
};
|
|
|
|
|
2020-03-27 00:33:21 -07:00
|
|
|
meta = with lib; {
|
2019-12-28 06:56:08 -08:00
|
|
|
homepage = "https://age-encryption.org/";
|
|
|
|
description = "Modern encryption tool with small explicit keys";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ tazjin ];
|
|
|
|
};
|
2020-06-28 08:17:43 -07:00
|
|
|
}
|