Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 22 lines 586 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 meta = with lib; { 17 description = "Ultimate Plumber is a tool for writing Linux pipes with instant live preview"; 18 homepage = "https://github.com/akavel/up"; 19 maintainers = with maintainers; [ ma27 ]; 20 license = licenses.asl20; 21 }; 22}