mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
16 lines
342 B
Nix
16 lines
342 B
Nix
{ stdenv, lib, bundlerEnv, ruby_2_2, icu, zlib }:
|
|
|
|
bundlerEnv rec {
|
|
name = "gollum-${version}";
|
|
version = "4.0.1";
|
|
|
|
ruby = ruby_2_2;
|
|
gemdir = ./.;
|
|
|
|
meta = with lib; {
|
|
description = "A simple, Git-powered wiki";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jgillich ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|