Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 496 B view raw
1{ 2 bundlerApp, 3 lib, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "riemann-dash"; 9 gemdir = ./.; 10 exes = [ "riemann-dash" ]; 11 12 passthru.updateScript = bundlerUpdateScript "riemann-dash"; 13 14 meta = with lib; { 15 description = "Javascript, websockets-powered dashboard for Riemann"; 16 homepage = "https://github.com/riemann/riemann-dash"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ 19 manveru 20 nicknovitski 21 ]; 22 platforms = platforms.unix; 23 }; 24}