about summary refs log tree commit diff
path: root/pkgs/development/libraries/htmlcxx/default.nix
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-13 17:11:03 -0500
committerndowens <ndowens04@gmail.com>2017-03-13 17:11:03 -0500
commit4aee4cc8a5a4d99e6013c667e01409be3123e395 (patch)
tree1ca41dbaa4f178f62eefe6b2e8a6271e20e808f9 /pkgs/development/libraries/htmlcxx/default.nix
parentb806e25d65421d7aa0a524ce1601f0e51099df11 (diff)
htmlcxx: 0.85 -> 0.86
Diffstat (limited to 'pkgs/development/libraries/htmlcxx/default.nix')
-rw-r--r--pkgs/development/libraries/htmlcxx/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/libraries/htmlcxx/default.nix b/pkgs/development/libraries/htmlcxx/default.nix
index 6557d8f804108..1537f9cc480b2 100644
--- a/pkgs/development/libraries/htmlcxx/default.nix
+++ b/pkgs/development/libraries/htmlcxx/default.nix
@@ -2,19 +2,19 @@
 
 stdenv.mkDerivation rec {
   name = "htmlcxx-${version}";
-  version = "0.85";
+  version = "0.86";
 
   src = fetchurl {
     url = "mirror://sourceforge/htmlcxx/htmlcxx/${version}/${name}.tar.gz";
-    sha256 = "1rdsjrcjkf7mi3182lq4v5wn2wncw0ziczagaqnzi0nwmp2a00mb";
+    sha256 = "1hgmyiad3qgbpf2dvv2jygzj6jpz4dl3n8ds4nql68a4l9g2nm07";
   };
 
   patches = [ ./ptrdiff.patch ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://htmlcxx.sourceforge.net/;
-    description = "htmlcxx is a simple non-validating css1 and html parser for C++";
-    license = stdenv.lib.licenses.lgpl2;
-    platforms = stdenv.lib.platforms.linux;
+    description = "A simple non-validating css1 and html parser for C++";
+    license = licenses.lgpl2;
+    platforms = platforms.linux;
   };
 }