about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/kramdown-rfc2629/default.nix
blob: 945c676ca18d277f9e69f002abb5d5c5f7ba757e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerApp }:

# Not in the default ../../../development/ruby-modules/with-packages/Gemfile
# because of version clash on the "kramdown" dependency.
bundlerApp rec {
  pname = "kramdown-rfc2629";
  gemdir = ./.;
  exes = [ "kramdown-rfc2629" ];

  meta = with lib; {
    description = "A markdown parser with multiple backends";
    homepage    = "https://github.com/cabo/kramdown-rfc2629";
    license     = with licenses; mit;
    maintainers = with maintainers; [
      vcunat # not really, but I expect to use it occasionally around IETF
    ];
  };
}