summary refs log tree commit diff
path: root/pkgs/development/libraries/silgraphite
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2019-11-25 04:05:39 +0100
committerNiklas Hambüchen <mail@nh2.me>2019-11-26 17:51:05 +0100
commitde97cb794d23de392f0553dbb89438148f9165a4 (patch)
tree0268e70c02def66f909897eae96cb179e2cb5597 /pkgs/development/libraries/silgraphite
parent90f08689c3aca228c3c5370e2345a3c723e7c740 (diff)
graphite2: 1.3.6 -> 1.3.13
Fixes various security bugs with CVEs since 2017.

Fixes #73645.

Note that for 1.3.6 *ONLY*, the file was called `graphite-*.tgz`
and not `graphite2-*.tgz`, that's why the URL changes as well.
Diffstat (limited to 'pkgs/development/libraries/silgraphite')
-rw-r--r--pkgs/development/libraries/silgraphite/graphite2.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/silgraphite/graphite2.nix b/pkgs/development/libraries/silgraphite/graphite2.nix
index 14af55c2afc1a..6b1c4ca97ba6b 100644
--- a/pkgs/development/libraries/silgraphite/graphite2.nix
+++ b/pkgs/development/libraries/silgraphite/graphite2.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, pkgconfig, freetype, cmake, python }:
 
 stdenv.mkDerivation rec {
-  version = "1.3.6";
+  version = "1.3.13";
   pname = "graphite2";
 
   src = fetchurl {
     url = "https://github.com/silnrsi/graphite/releases/download/"
-      + "${version}/graphite-${version}.tgz";
-    sha256 = "0xdg6bc02bl8yz39l5i2skczfg17q4lif0qqan0dhvk0mibpcpj7";
+      + "${version}/graphite2-${version}.tgz";
+    sha256 = "01jzhwnj1c3d68dmw15jdxly0hwkmd8ja4kw755rbkykn1ly2qyx";
   };
 
   nativeBuildInputs = [ pkgconfig cmake ];