Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 472 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "t"; 9 gemdir = ./.; 10 exes = [ "t" ]; 11 12 passthru.updateScript = bundlerUpdateScript "t"; 13 14 meta = with lib; { 15 description = "Command-line power tool for Twitter"; 16 homepage = "http://sferik.github.io/t/"; 17 license = licenses.asl20; 18 maintainers = with maintainers; [ 19 offline 20 manveru 21 nicknovitski 22 ]; 23 platforms = platforms.unix; 24 mainProgram = "t"; 25 }; 26}