at 24.05-pre 22 lines 580 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 hash = "sha256-d6FCJ9G9ytHhWQ5lXEtlmzclt3odS9e+Y1ry6EiIDsk="; 12 }; 13 14 vendorHash = "sha256-PbOMUrKigCUuu5Hv3h0ZYSYezS+64DIZSubnQZ12HOE="; 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}