42 lines
796 B
Nix
42 lines
796 B
Nix
|
{
|
||
|
lib,
|
||
|
buildGoModule,
|
||
|
fetchFromGitHub,
|
||
|
testers,
|
||
|
ejsonkms,
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "ejsonkms";
|
||
|
version = "0.2.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "envato";
|
||
|
repo = "ejsonkms";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-aHnxdEADrzaRld7G2owSHO/0xYXIa8EBBR+phdA4eRM=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-aLcSCDgd3IGiUg/JAPNIV30tAh6tDYZnFnqzaLELXw0=";
|
||
|
|
||
|
ldflags = [
|
||
|
"-X main.version=v${version}" "-s" "-w"
|
||
|
];
|
||
|
|
||
|
doCheck = false;
|
||
|
|
||
|
passthru.tests = {
|
||
|
version = testers.testVersion {
|
||
|
package = ejsonkms;
|
||
|
version = "v${version}";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Integrates EJSON with AWS KMS";
|
||
|
homepage = "https://github.com/envato/ejsonkms";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ viraptor ];
|
||
|
};
|
||
|
}
|