Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 606 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "up"; 5 version = "0.4"; 6 7 src = fetchFromGitHub { 8 owner = "akavel"; 9 repo = "up"; 10 rev = "v${version}"; 11 sha256 = "1j8fi14fiwjscfzdfjqxgavjadwvcm5mqr8fb7hx3jmxs4kl58bp"; 12 }; 13 14 vendorSha256 = "1q8wfsfl3rz698ck5q5s5z6iw9k134fxxvwipcp2b052n998rcrx"; 15 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Ultimate Plumber is a tool for writing Linux pipes with instant live preview"; 20 homepage = "https://github.com/akavel/up"; 21 maintainers = with maintainers; [ ma27 ]; 22 license = licenses.asl20; 23 }; 24}