about summary refs log tree commit diff
path: root/pkgs/development/libraries/harfbuzz
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-09-26 15:45:48 +0200
committerMichael Raskin <7c6f434c@mail.ru>2016-09-26 15:49:30 +0200
commitb2c386cf7cd897a43a5085b7129ebb9d715d4e4b (patch)
treef3f832c6e7209287f00e4525891a8548eed29841 /pkgs/development/libraries/harfbuzz
parent7a15d8b3ab2b0562fdc8fac7ea36883fe309b049 (diff)
downloadnixlib-b2c386cf7cd897a43a5085b7129ebb9d715d4e4b.tar
nixlib-b2c386cf7cd897a43a5085b7129ebb9d715d4e4b.tar.gz
nixlib-b2c386cf7cd897a43a5085b7129ebb9d715d4e4b.tar.bz2
nixlib-b2c386cf7cd897a43a5085b7129ebb9d715d4e4b.tar.lz
nixlib-b2c386cf7cd897a43a5085b7129ebb9d715d4e4b.tar.xz
nixlib-b2c386cf7cd897a43a5085b7129ebb9d715d4e4b.tar.zst
nixlib-b2c386cf7cd897a43a5085b7129ebb9d715d4e4b.zip
harfbuzz: 1.2.7 -> 1.3.1
Diffstat (limited to 'pkgs/development/libraries/harfbuzz')
-rw-r--r--pkgs/development/libraries/harfbuzz/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/libraries/harfbuzz/default.nix b/pkgs/development/libraries/harfbuzz/default.nix
index d1c41c9ea808..d22c32674468 100644
--- a/pkgs/development/libraries/harfbuzz/default.nix
+++ b/pkgs/development/libraries/harfbuzz/default.nix
@@ -5,7 +5,7 @@
 }:
 
 let
-  version = "1.2.7";
+  version = "1.3.1";
   inherit (stdenv.lib) optional optionals optionalString;
 in
 
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.bz2";
-    sha256 = "09lh8x6qj0cd950whgaqqi3c4pqbl6z7aw9ddm73i14bw056185v";
+    sha256 = "18c9rzg4ilmhbx8hpdhcjffkzq5smcbc2lr23g6fdm8rs5nj0hm2";
   };
 
   outputs = [ "out" "dev" ];
@@ -47,7 +47,10 @@ stdenv.mkDerivation {
   meta = with stdenv.lib; {
     description = "An OpenType text shaping engine";
     homepage = http://www.freedesktop.org/wiki/Software/HarfBuzz;
+    downloadPage = "https://www.freedesktop.org/software/harfbuzz/release/";
     maintainers = [ maintainers.eelco ];
     platforms = with platforms; linux ++ darwin;
+    inherit version;
+    updateWalker = true;
   };
 }