nixpkgs-suyu/pkgs/tools/misc/envsubst/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
606 B
Nix
Raw Normal View History

2021-09-05 10:21:47 +02:00
{ lib, fetchFromGitHub, buildGoModule }:
2018-10-03 01:16:19 +02:00
2021-09-05 10:21:47 +02:00
buildGoModule rec {
pname = "envsubst";
2020-06-26 09:54:23 +02:00
version = "1.2.0";
2018-10-03 01:16:19 +02:00
src = fetchFromGitHub {
owner = "a8m";
repo = "envsubst";
rev = "v${version}";
2020-06-26 09:54:23 +02:00
sha256 = "0zkgjdlw3d5xh7g45bzxqspxr61ljdli8ng4a1k1gk0dls4sva8n";
2018-10-03 01:16:19 +02:00
};
vendorSha256 = null;
2021-09-05 10:21:47 +02:00
postInstall = ''
install -Dm444 -t $out/share/doc/${pname} LICENSE *.md
'';
2018-10-03 01:16:19 +02:00
meta = with lib; {
description = "Environment variables substitution for Go";
homepage = "https://github.com/a8m/envsubst";
2018-10-03 01:16:19 +02:00
license = licenses.mit;
maintainers = with maintainers; [ nicknovitski ];
};
}