nixpkgs/pkgs/by-name/ej/ejsonkms/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
796 B
Nix
Raw Normal View History

2024-06-10 13:42:43 +03:00
{
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 ];
};
}