Merge pull request #47693 from nicknovitski/envsubst-init

envsubst: init at 1.1.0
This commit is contained in:
lewo 2018-10-05 09:00:33 +02:00 committed by GitHub
commit 8c0d32f8e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "envsubst-${version}";
version = "1.1.0";
goPackagePath = "github.com/a8m/envsubst";
src = fetchFromGitHub {
owner = "a8m";
repo = "envsubst";
rev = "v${version}";
sha256 = "1d6nipagjn40n6iw1p3r489l2km5xjd5db9gbh1vc5sxc617l7yk";
};
meta = with lib; {
description = "Environment variables substitution for Go";
homepage = https://github.com/a8m/envsubst;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ nicknovitski ];
};
}

View file

@ -1284,6 +1284,8 @@ with pkgs;
envconsul = callPackage ../tools/system/envconsul { };
envsubst = callPackage ../tools/misc/envsubst { };
eschalot = callPackage ../tools/security/eschalot { };
esptool = callPackage ../tools/misc/esptool { };