Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 32 lines 619 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "claws"; 9 version = "0.4.1"; 10 11 src = fetchFromGitHub { 12 rev = version; 13 owner = "thehowl"; 14 repo = "claws"; 15 hash = "sha256-3zzUBeYfu9x3vRGX1DionLnAs1e44tFj8Z1dpVwjdCg="; 16 }; 17 18 vendorHash = "sha256-FP+3Rw5IdCahhx9giQrpepMMtF1pWcyjNglrlu9ju0Q="; 19 20 ldflags = [ 21 "-s" 22 "-w" 23 ]; 24 25 meta = with lib; { 26 homepage = "https://github.com/thehowl/claws"; 27 description = "Interactive command line client for testing websocket servers"; 28 license = licenses.mit; 29 maintainers = [ ]; 30 mainProgram = "claws"; 31 }; 32}