bun: 1.1.34 -> 1.1.38 (#360759)
[NixPkgs.git] / pkgs / servers / http / showoff / default.nix
blob9c94b43b77d6a8c6f2ce3feddb025a0b7c754153
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "showoff";
9   gemdir = ./.;
10   exes = [ "showoff" ];
12   passthru.updateScript = bundlerUpdateScript "showoff";
14   meta = with lib; {
15     description = "Slideshow presentation tool with a twist";
16     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";
17     homepage = "https://puppetlabs.github.io/showoff/";
18     license = with licenses; mit;
19     platforms = platforms.unix;
20     maintainers = with maintainers; [
21       maxwilson
22       nicknovitski
23     ];
24   };