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: 6150ee8590eb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 12b3f71cf105
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 5, 2020

  1. mdcat: 0.20.0 -> 0.21.1

    davidtwco committed Sep 5, 2020
    Copy the full SHA
    c763b49 View commit details
  2. Merge pull request #97221 from davidtwco/mdcat-0.21.1

    mdcat: 0.20.0 -> 0.21.1
    marsam authored Sep 5, 2020
    Copy the full SHA
    12b3f71 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/text/mdcat/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/text/mdcat/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,19 @@

rustPlatform.buildRustPackage rec {
pname = "mdcat";
version = "0.20.0";
version = "0.21.1";

src = fetchFromGitHub {
owner = "lunaryorn";
repo = pname;
rev = "mdcat-${version}";
hash = "sha256-1qxz6p7VaJ9eMcLQaTW/M4+Xo0WLihzyEAycbkjjPyA=";
hash = "sha256-O7LlbSkxcyHQiTHYB/QBJVlShzTSzud3VJDIQ1ScvM4=";
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;

cargoSha256 = "sha256-/mAwlxed1MOFUA1jDSrgPzJuURbKzwucBWORVVHlrt8=";
cargoSha256 = "sha256-pvhYKyFraMI4w5nq6L8qs/ONSNDTHElhZnZmD5mmAZs=";

checkInputs = [ ansi2html ];
checkPhase = ''