From 1256c8670da0ca740224d77f5570c767ea84e26a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 11 Apr 2023 01:20:00 +0000 Subject: [PATCH] cmark-gfm: remove outdated substituteInPlace Upstream already merged the patch. --- pkgs/development/libraries/cmark-gfm/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/libraries/cmark-gfm/default.nix b/pkgs/development/libraries/cmark-gfm/default.nix index c2f218f9db2c..175b3ee7aeff 100644 --- a/pkgs/development/libraries/cmark-gfm/default.nix +++ b/pkgs/development/libraries/cmark-gfm/default.nix @@ -14,12 +14,6 @@ stdenv.mkDerivation rec { doCheck = true; - # remove when https://github.com/github/cmark-gfm/pull/248 merged and released - postInstall = '' - substituteInPlace $out/include/cmark-gfm-core-extensions.h \ - --replace '#include "config.h"' '#include ' - ''; - meta = with lib; { description = "GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C"; homepage = "https://github.com/github/cmark-gfm";