Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 25 lines 623 B view raw
1{ buildGoPackage, fetchFromGitHub, lib }: 2 3buildGoPackage rec { 4 pname = "aws-env"; 5 version = "0.4"; 6 rev = "v${version}"; 7 8 goPackagePath = "github.com/Droplr/aws-env"; 9 10 src = fetchFromGitHub { 11 owner = "Droplr"; 12 repo = pname; 13 inherit rev; 14 sha256 = "0pw1qz1nn0ig90p8d8c1qcwsdz0m9w63ib07carhh86gw55425j7"; 15 }; 16 17 goDeps = ./deps.nix; 18 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 }; 25}