Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "wego"; 9 version = "2.3"; 10 11 src = fetchFromGitHub { 12 owner = "schachmat"; 13 repo = "wego"; 14 rev = version; 15 sha256 = "sha256-YGUll0Wi/oulNMXSrSFeAVe+aGpyFeyXRZTW4ngC3Zk="; 16 }; 17 18 vendorHash = "sha256-aXrXw/7ZtSZXIKDMZuWPV2zAf0e0lU0QCBhua7tHGEY="; 19 20 meta = with lib; { 21 homepage = "https://github.com/schachmat/wego"; 22 description = "Weather app for the terminal"; 23 license = licenses.isc; 24 mainProgram = "wego"; 25 }; 26}