python312Packages.recurring-ical-events: 3.3.3 -> 3.3.4 (#361883)
[NixPkgs.git] / pkgs / servers / http / showoff / default.nix
blobc3deae28ec0e22a2f101ee4f3b00654810b01fc0
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "showoff";
5   gemdir = ./.;
6   exes = [ "showoff" ];
8   passthru.updateScript = bundlerUpdateScript "showoff";
10   meta = with lib; {
11     description = "Slideshow presentation tool with a twist";
12     longDescription = "It runs as a web application, with audience interactivity features. This means that your audience can follow along in their own browsers, can download supplemental materials, can participate in quizzes or polls, post questions for the presenter, etc. By default, their slideshows will synchronize with the presenter, but they can switch to self-navigation mode";
13     homepage = "https://puppetlabs.github.io/showoff/";
14     license = with licenses; mit;
15     platforms = platforms.unix;
16     maintainers = with maintainers; [ maxwilson nicknovitski ];
17   };