Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c811124411fe
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6d9a4a615ee2
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Jan 28, 2020

  1. Merge #75437: kramdown-rfc2629: init at 1.2.13

    (cherry picked from commit b47ec9a)
    Re-tested it creates html on 19.09 as well.
    vcunat committed Jan 28, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    ljharb Jordan Harband
    Copy the full SHA
    6d9a4a6 View commit details
2 changes: 2 additions & 0 deletions pkgs/tools/text/kramdown-rfc2629/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'kramdown-rfc2629'
17 changes: 17 additions & 0 deletions pkgs/tools/text/kramdown-rfc2629/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
GEM
remote: https://rubygems.org/
specs:
certified (1.0.0)
kramdown (1.17.0)
kramdown-rfc2629 (1.2.13)
certified (~> 1.0)
kramdown (~> 1.17.0)

PLATFORMS
ruby

DEPENDENCIES
kramdown-rfc2629

BUNDLED WITH
1.17.3
18 changes: 18 additions & 0 deletions pkgs/tools/text/kramdown-rfc2629/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
];
};
}
33 changes: 33 additions & 0 deletions pkgs/tools/text/kramdown-rfc2629/gemset.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
certified = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1706p6p0a8adyvd943af2a3093xakvislgffw3v9dvp7j07dyk5a";
type = "gem";
};
version = "1.0.0";
};
kramdown = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1n1c4jmrh5ig8iv1rw81s4mw4xsp4v97hvf8zkigv4hn5h542qjq";
type = "gem";
};
version = "1.17.0";
};
kramdown-rfc2629 = {
dependencies = ["certified" "kramdown"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0s53m46qlcdakik0czvx0p41mk46l9l36331cps8gpf364wf3l9d";
type = "gem";
};
version = "1.2.13";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -1766,6 +1766,8 @@ in

klaus = with pythonPackages; toPythonApplication klaus;

kramdown-rfc2629 = callPackage ../tools/text/kramdown-rfc2629 { };

lcdproc = callPackage ../servers/monitoring/lcdproc { };

languagetool = callPackage ../tools/text/languagetool { };