nixpkgs/pkgs/applications/misc/gollum/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
638 B
Nix
Raw Normal View History

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