nixpkgs/pkgs/tools/admin/aws-env/default.nix

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

27 lines
651 B
Nix
Raw Normal View History

{ buildGoPackage, fetchFromGitHub, lib }:
2018-09-27 04:08:20 +00:00
buildGoPackage rec {
pname = "aws-env";
2023-10-25 00:51:56 +00:00
version = "0.5";
2018-09-27 04:08:20 +00:00
rev = "v${version}";
goPackagePath = "github.com/Droplr/aws-env";
src = fetchFromGitHub {
owner = "Droplr";
repo = pname;
inherit rev;
2023-10-25 00:51:56 +00:00
sha256 = "sha256-dzXgQW5noWT7u276tlwhvgvu2J8VYrOdW9vidZ3W3t0=";
2018-09-27 04:08:20 +00:00
};
goDeps = ./deps.nix;
meta = with lib; {
description = "Secure way to handle environment variables in Docker and envfile with AWS Parameter Store";
homepage = "https://github.com/Droplr/aws-env";
license = licenses.mit;
maintainers = with maintainers; [ srhb ];
2024-02-11 02:19:15 +00:00
mainProgram = "aws-env";
2018-09-27 04:08:20 +00:00
};
}