python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / admin / aws-env / default.nix
blobdff37520797650682dd6abecbc6a9316596634e2
1 { buildGoPackage, fetchFromGitHub, lib }:
3 buildGoPackage rec {
4   pname = "aws-env";
5   version = "0.4";
6   rev = "v${version}";
8   goPackagePath = "github.com/Droplr/aws-env";
10   src = fetchFromGitHub {
11     owner = "Droplr";
12     repo = pname;
13     inherit rev;
14     sha256 = "0pw1qz1nn0ig90p8d8c1qcwsdz0m9w63ib07carhh86gw55425j7";
15   };
17   goDeps = ./deps.nix;
19   meta = with lib; {
20     description = "Secure way to handle environment variables in Docker and envfile with AWS Parameter Store";
21     homepage = "https://github.com/Droplr/aws-env";
22     license = licenses.mit;
23     maintainers = with maintainers; [ srhb ];
24   };