lol
fork

Configure Feed

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

at 18.03-beta 25 lines 612 B view raw
1{ stdenv, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 name = "wuzz-${version}"; 5 version = "0.2.0"; 6 rev = "v${version}"; 7 8 goPackagePath = "https://github.com/asciimoo/wuzz"; 9 10 src = fetchFromGitHub { 11 owner = "asciimoo"; 12 repo = "wuzz"; 13 inherit rev; 14 sha256 = "1fcr5jr0vn5w60bn08lkh2mi0hdarwp361h94in03139j7hhqrfs"; 15 }; 16 17 goDeps = ./deps.nix; 18 19 meta = with stdenv.lib; { 20 homepage = https://github.com/asciimoo/wuzz; 21 description = "Interactive cli tool for HTTP inspection"; 22 license = licenses.agpl3; 23 maintainers = with maintainers; [ pradeepchhetri ]; 24 }; 25}