depot/third_party/nixpkgs/pkgs/tools/text/kramdown-rfc2629/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

18 lines
563 B
Nix

{ 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
];
};
}