Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 524 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "hue-cli"; 9 gemdir = ./.; 10 exes = [ "hue" ]; 11 12 passthru.updateScript = bundlerUpdateScript "hue-cli"; 13 14 meta = { 15 description = "Command line interface for controlling Philips Hue system's lights and bridge"; 16 homepage = "https://github.com/birkirb/hue-cli"; 17 license = lib.licenses.mit; 18 platforms = lib.platforms.unix; 19 maintainers = with lib.maintainers; [ 20 manveru 21 nicknovitski 22 ]; 23 mainProgram = "hue"; 24 }; 25}