summary refs log tree commit diff
path: root/pkgs/development/libraries/cmark
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-05-10 15:56:45 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-05-10 15:58:53 -0400
commit33acfb8029ae9881aa15a839b7e72be4460bddc2 (patch)
tree6ae81320614e601eafd40adf43f7dfa45fc7a7c8 /pkgs/development/libraries/cmark
parent0e93069c7f40c98cc41de32335846fc5a6eb79f6 (diff)
downloadnixpkgs-33acfb8029ae9881aa15a839b7e72be4460bddc2.tar
nixpkgs-33acfb8029ae9881aa15a839b7e72be4460bddc2.tar.gz
nixpkgs-33acfb8029ae9881aa15a839b7e72be4460bddc2.tar.bz2
nixpkgs-33acfb8029ae9881aa15a839b7e72be4460bddc2.tar.lz
nixpkgs-33acfb8029ae9881aa15a839b7e72be4460bddc2.tar.xz
nixpkgs-33acfb8029ae9881aa15a839b7e72be4460bddc2.tar.zst
nixpkgs-33acfb8029ae9881aa15a839b7e72be4460bddc2.zip
cmark: 0.23.0 -> 0.27.1
Diffstat (limited to 'pkgs/development/libraries/cmark')
-rw-r--r--pkgs/development/libraries/cmark/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/cmark/default.nix b/pkgs/development/libraries/cmark/default.nix
index 303a6ccaeb8..dceb042732d 100644
--- a/pkgs/development/libraries/cmark/default.nix
+++ b/pkgs/development/libraries/cmark/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, cmake }:
 
 stdenv.mkDerivation rec {
-  version = "0.23.0";
+  version = "0.27.1";
   name = "cmark-${version}";
 
   src = fetchurl {
     url = "https://github.com/jgm/cmark/archive/${version}.tar.gz";
-    sha256 = "87d289965066fce7be247d44c0304af1b20817dcc1b563702302ae33f2be0596";
+    sha256 = "1da62ispca9aal2a36gaj87175rv5013pl7x740vk32y6lclr6v6";
   };
 
   buildInputs = [ cmake ];