Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 16 lines 275 B view raw
1{ lib, bundlerApp }: 2 3bundlerApp { 4 pname = "3llo"; 5 6 gemdir = ./.; 7 8 exes = [ "3llo" ]; 9 10 meta = with lib; { 11 description = "Trello interactive CLI on terminal"; 12 license = licenses.mit; 13 homepage = "https://github.com/qcam/3llo"; 14 maintainers = [ ]; 15 }; 16}