nixpkgs/pkgs/tools/admin/ejson2env/default.nix

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

27 lines
685 B
Nix
Raw Normal View History

2022-03-04 08:52:10 +03:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "ejson2env";
2022-04-22 16:22:38 +03:00
version = "2.0.5";
2022-03-04 08:52:10 +03:00
src = fetchFromGitHub {
owner = "Shopify";
repo = pname;
rev = "v${version}";
2022-04-22 16:22:38 +03:00
sha256 = "sha256-HcUmFajbOUZ0T5Th6OA9WBtfTz646qLbXx8NVeJsVng=";
2022-03-04 08:52:10 +03:00
};
2022-04-22 16:22:38 +03:00
vendorSha256 = "sha256-agWcD8vFNde1SCdkRovMNPf+1KODxV8wW1mXvE0w/CI=";
2022-03-04 08:52:10 +03:00
ldflags = [
"-X main.version=${version}"
];
2022-03-04 08:52:10 +03:00
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;
};
}