Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libsass: add patch for CVE-2018-19827 (PR #61673)

vcunat switched to upstream commit that's reachable from master.

(cherry picked from commit f9f3d6b210f0ca946ed202d3b7f89ec78988c130)

authored by

Robert Scott and committed by
Vladimír Čunát
cff73645 ccd94f56

+8
+8
pkgs/development/libraries/libsass/default.nix
··· 9 9 sha256 = "0w6v1xa00jvfyk4b29ir7dfkhiq72anz015gg580bi7x3n7saz28"; 10 10 }; 11 11 12 + patches = [ 13 + (fetchpatch { 14 + name = "CVE-2018-19827.patch"; 15 + url = "https://github.com/sass/libsass/commit/b21fb9f84096d9927780b86fa90629a096af358d.patch"; 16 + sha256 = "0ix12x9plmpgs3xda2fjdcykca687h16qfwqr57i5qphjr9vp33l"; 17 + }) 18 + ]; 19 + 12 20 preConfigure = '' 13 21 export LIBSASS_VERSION=${version} 14 22 '';