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