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