mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, stdenv, bundlerEnv, ruby, makeWrapper, bundlerUpdateScript
|
|
, git, docutils, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gollum";
|
|
# nix-shell -p bundix icu zlib cmake pkg-config openssl
|
|
version = (import ./gemset.nix).gollum.version;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
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 ":" ${lib.makeBinPath [ git docutils perl]}
|
|
makeWrapper ${env}/bin/gollum-migrate-tags $out/bin/gollum-migrate-tags \
|
|
--prefix PATH ":" ${lib.makeBinPath [ git ]}
|
|
'';
|
|
|
|
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/v${version}/HISTORY.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ erictapen jgillich nicknovitski ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|