Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 16 lines 365 B view raw
1{ bundlerApp, bundlerUpdateScript, lib }: 2 3bundlerApp { 4 pname = "rufo"; 5 gemdir = ./.; 6 exes = [ "rufo" ]; 7 8 passthru.updateScript = bundlerUpdateScript "rufo"; 9 10 meta = with lib; { 11 description = "Ruby formatter"; 12 homepage = "https://github.com/ruby-formatter/rufo"; 13 license = licenses.mit; 14 maintainers = with maintainers; [ andersk ]; 15 }; 16}