2022-04-30 16:47:25 +02:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript, ruby, makeWrapper, git, docutils }:
|
2016-02-11 19:49:33 +01:00
|
|
|
|
2022-04-30 16:47:25 +02:00
|
|
|
bundlerApp rec {
|
2017-06-04 16:02:42 +02:00
|
|
|
pname = "gollum";
|
2022-04-30 16:47:25 +02:00
|
|
|
exes = [ "gollum" ];
|
2016-02-11 19:49:33 +01:00
|
|
|
|
2022-04-30 16:47:25 +02:00
|
|
|
inherit ruby;
|
|
|
|
gemdir = ./.;
|
2017-06-03 22:50:33 +02:00
|
|
|
|
2022-04-30 16:47:25 +02:00
|
|
|
buildInputs = [ makeWrapper ];
|
2016-02-11 19:49:33 +01:00
|
|
|
|
2019-07-22 14:02:47 +02:00
|
|
|
passthru.updateScript = bundlerUpdateScript "gollum";
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-30 18:20:25 +02:00
|
|
|
description = "A simple, Git-powered wiki with a sweet API and local frontend";
|
|
|
|
homepage = "https://github.com/gollum/gollum";
|
2022-04-30 16:47:25 +02:00
|
|
|
changelog = "https://github.com/gollum/gollum/blob/HEAD/HISTORY.md";
|
2016-02-11 19:49:33 +01:00
|
|
|
license = licenses.mit;
|
2022-04-30 16:47:25 +02:00
|
|
|
maintainers = with maintainers; [ erictapen jgillich nicknovitski bbenno ];
|
2016-02-11 19:49:33 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|