lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 31 lines 738 B view raw
1{ 2 lib, 3 stdenv, 4 buildGoModule, 5 fetchFromGitHub, 6}: 7 8buildGoModule rec { 9 pname = "senv"; 10 version = "0.7.0"; 11 12 src = fetchFromGitHub { 13 owner = "SpectralOps"; 14 repo = "senv"; 15 rev = "v${version}"; 16 sha256 = "sha256-TjlIX8FPNiPDQo41pIt04cki/orc+v30pV3o2bQQhAQ="; 17 }; 18 19 vendorHash = "sha256-zOWX0AiLAs1FtOn+VtRexfn6oOmJT1PoTPHkcpwvxRY="; 20 21 subPackages = [ "." ]; 22 23 meta = with lib; { 24 description = "Friends don't let friends leak secrets on their terminal window"; 25 homepage = "https://github.com/SpectralOps/senv"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ SuperSandro2000 ]; 28 broken = stdenv.hostPlatform.isDarwin; # needs golang.org/x/sys bump 29 mainProgram = "senv"; 30 }; 31}