mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
544 B
Nix
22 lines
544 B
Nix
{ lib, fetchFromGitHub, buildGoPackage }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "envsubst";
|
|
version = "1.2.0";
|
|
|
|
goPackagePath = "github.com/a8m/envsubst";
|
|
src = fetchFromGitHub {
|
|
owner = "a8m";
|
|
repo = "envsubst";
|
|
rev = "v${version}";
|
|
sha256 = "0zkgjdlw3d5xh7g45bzxqspxr61ljdli8ng4a1k1gk0dls4sva8n";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Environment variables substitution for Go";
|
|
homepage = "https://github.com/a8m/envsubst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nicknovitski ];
|
|
};
|
|
}
|