lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

getdata: add security patch from Debian (#124713)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Vincent Laporte
Sandro
and committed by
GitHub
17887e49 27aa13c5

+8 -1
+8 -1
pkgs/development/libraries/getdata/default.nix
··· 1 - { lib, stdenv, fetchurl, libtool }: 1 + { lib, stdenv, fetchurl, fetchpatch, libtool }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "getdata"; 4 4 version = "0.10.0"; ··· 6 6 url = "mirror://sourceforge/getdata/${pname}-${version}.tar.xz"; 7 7 sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym"; 8 8 }; 9 + 10 + patches = [ 11 + (fetchpatch { 12 + url = "https://sources.debian.org/data/main/libg/libgetdata/0.10.0-10/debian/patches/CVE-2021-20204.patch"; 13 + sha256 = "1lvp1c2pkk9kxniwlvax6d8fsmjrkpxawf71c7j4rfjm6dgvivzm"; 14 + }) 15 + ]; 9 16 10 17 buildInputs = [ libtool ]; 11 18