lol
0
fork

Configure Feed

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

at 24.05-pre 33 lines 727 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4, stdenv 5}: 6 7buildGoModule rec { 8 pname = "mole"; 9 version = "2.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "davrodpin"; 13 repo = pname; 14 rev = "v${version}"; 15 hash = "sha256-JwLiuw00g2h5uqNmaqAbal0KCY6LwF2fcL2MrB1HBIc="; 16 }; 17 18 vendorHash = "sha256-+y9JiQvDSQS5WQD4mVOMH3Oh9C4C/Kx3kC6q2SgSo+I="; 19 20 ldflags = [ 21 "-s" 22 "-w" 23 "-X=github.com/davrodpin/mole/cmd.version=${version}" 24 ]; 25 26 meta = with lib; { 27 description = "CLI application to create SSH tunnels"; 28 homepage = "https://github.com/davrodpin/mole"; 29 license = with licenses; [ mit ]; 30 maintainers = with maintainers; [ fab ]; 31 broken = stdenv.isDarwin; # build fails with go > 1.17 32 }; 33}