fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ buildGoModule, fetchFromGitHub, lib }:
2
3buildGoModule rec {
4 pname = "ejson2env";
5 version = "2.0.5";
6
7 src = fetchFromGitHub {
8 owner = "Shopify";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-HcUmFajbOUZ0T5Th6OA9WBtfTz646qLbXx8NVeJsVng=";
12 };
13
14 vendorSha256 = "sha256-agWcD8vFNde1SCdkRovMNPf+1KODxV8wW1mXvE0w/CI=";
15
16 ldflags = [
17 "-X main.version=${version}"
18 ];
19
20 meta = with lib; {
21 description = "A tool to simplify storing secrets that should be accessible in the shell environment in your git repo.";
22 homepage = "https://github.com/Shopify/ejson2env";
23 maintainers = with maintainers; [ viraptor ];
24 license = licenses.mit;
25 };
26}