mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
bce93ec4c6
Some changes might require manual migration steps: "Due to changes to the way in which Gollum handles filenames, you may have to change some links in your wiki when migrating from gollum 4.x. See the release notes [0] for more details. You may find the bin/gollum-migrate-tags script helpful to accomplish this. Also see the --lenient-tag-lookup option for making tag lookup backwards compatible with 4.x, though note that this will decrease performance on large wikis with many tags." (source: [1]) [0]: https://github.com/gollum/gollum/wiki/5.0-release-notes [1]: https://github.com/gollum/gollum/blob/v5.0.0/HISTORY.md
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ stdenv, bundlerEnv, ruby, makeWrapper, bundlerUpdateScript
|
|
, git }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gollum";
|
|
# nix-shell -p bundix icu zlib cmake pkg-config openssl
|
|
version = (import ./gemset.nix).gollum.version;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = let
|
|
env = bundlerEnv {
|
|
name = "${pname}-${version}-gems";
|
|
inherit pname ruby;
|
|
gemdir = ./.;
|
|
};
|
|
in ''
|
|
mkdir -p $out/bin
|
|
makeWrapper ${env}/bin/gollum $out/bin/gollum \
|
|
--prefix PATH ":" ${stdenv.lib.makeBinPath [ git ]}
|
|
makeWrapper ${env}/bin/gollum-migrate-tags $out/bin/gollum-migrate-tags \
|
|
--prefix PATH ":" ${stdenv.lib.makeBinPath [ git ]}
|
|
'';
|
|
|
|
passthru.updateScript = bundlerUpdateScript "gollum";
|
|
|
|
meta = with stdenv.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/v${version}/HISTORY.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jgillich primeos nicknovitski ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|