Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / gollum / default.nix
blobcafebfad39a22e90c430c9a5bb7b9e1ce6afa1ac
1 { lib, bundlerApp, bundlerUpdateScript, ruby, makeWrapper, git, docutils, nixosTests }:
3 bundlerApp rec {
4   pname = "gollum";
5   exes = [ "gollum" ];
7   inherit ruby;
8   gemdir = ./.;
10   nativeBuildInputs = [ makeWrapper ];
12   passthru.updateScript = bundlerUpdateScript "gollum";
13   passthru.tests.gollum = nixosTests.gollum;
15   meta = with lib; {
16     description = "A simple, Git-powered wiki with a sweet API and local frontend";
17     homepage = "https://github.com/gollum/gollum";
18     changelog = "https://github.com/gollum/gollum/blob/HEAD/HISTORY.md";
19     license = licenses.mit;
20     maintainers = with maintainers; [ erictapen jgillich nicknovitski bbenno ];
21     platforms = platforms.unix;
22   };