My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/envsubst/default.nix

26 lines
655 B

{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "envsubst";
version = "1.2.0";
src = fetchFromGitHub {
owner = "a8m";
repo = "envsubst";
rev = "v${version}";
sha256 = "0zkgjdlw3d5xh7g45bzxqspxr61ljdli8ng4a1k1gk0dls4sva8n";
};
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
postInstall = ''
install -Dm444 -t $out/share/doc/${pname} LICENSE *.md
'';
meta = with lib; {
description = "Environment variables substitution for Go";
homepage = "https://github.com/a8m/envsubst";
license = licenses.mit;
maintainers = with maintainers; [ nicknovitski ];
};
}