Merge pull request #47693 from nicknovitski/envsubst-init
envsubst: init at 1.1.0
This commit is contained in:
commit
8c0d32f8e7
22
pkgs/tools/misc/envsubst/default.nix
Normal file
22
pkgs/tools/misc/envsubst/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user