scrot: 0.8-17 -> 0.8-18

The old patch-set isn't available on Debian anymore.
Uncovered by c3255fe8ec.

+5 -7
+5 -7
pkgs/tools/graphics/scrot/default.nix
··· 2 3 let 4 debPatch = fetchzip { 5 - url = mirror://debian/pool/main/s/scrot/scrot_0.8-17.debian.tar.xz; 6 - sha256 = "0ydsr3vah5wkcbnp91knkdbil4hx0cn0iy57frl03azqzc29bkw5"; 7 }; 8 in 9 stdenv.mkDerivation rec { 10 - name = "scrot-0.8-17"; 11 12 src = fetchurl { 13 url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz"; 14 sha256 = "1wll744rhb49lvr2zs6m93rdmiq59zm344jzqvijrdn24ksiqgb1"; 15 }; 16 17 - inherit debPatch; 18 - 19 postPatch = '' 20 - for patch in $(cat $debPatch/patches/series); do 21 - patch -p1 < "$debPatch/patches/$patch" 22 done 23 ''; 24
··· 2 3 let 4 debPatch = fetchzip { 5 + url = mirror://debian/pool/main/s/scrot/scrot_0.8-18.debian.tar.xz; 6 + sha256 = "1m8m8ad0idf3nzw0k57f6rfbw8n7dza69a7iikriqgbrpyvxqybx"; 7 }; 8 in 9 stdenv.mkDerivation rec { 10 + name = "scrot-0.8-18"; 11 12 src = fetchurl { 13 url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz"; 14 sha256 = "1wll744rhb49lvr2zs6m93rdmiq59zm344jzqvijrdn24ksiqgb1"; 15 }; 16 17 postPatch = '' 18 + for patch in $(cat ${debPatch}/patches/series); do 19 + patch -p1 < "${debPatch}/patches/$patch" 20 done 21 ''; 22