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

17 lines
342 B
Nix
Raw Normal View History

2016-02-11 18:49:33 +00:00
{ stdenv, lib, bundlerEnv, ruby_2_2, icu, zlib }:
bundlerEnv rec {
name = "gollum-${version}";
version = "4.0.1";
ruby = ruby_2_2;
2017-01-17 23:41:32 +00:00
gemdir = ./.;
2016-02-11 18:49:33 +00:00
meta = with lib; {
description = "A simple, Git-powered wiki";
license = licenses.mit;
maintainers = with maintainers; [ jgillich ];
platforms = platforms.unix;
};
}