bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
22 lines
632 B
Nix
22 lines
632 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ejson2env";
|
|
version = "2.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Shopify";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Oc0fWihOUafYN5t9SxHxaYJEv5e46CCDNe4xo+Dcjrs=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-BY45WirK9AVhvFGB5uqI4dLxzO2WuNNhhJbQ6nsRXao=";
|
|
|
|
meta = with lib; {
|
|
description = "A tool to simplify storing secrets that should be accessible in the shell environment in your git repo.";
|
|
homepage = "https://github.com/Shopify/ejson2env";
|
|
maintainers = with maintainers; [ viraptor ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|