lol

fltk: 1.3.3 -> 1.3.4

This incidentally fixes the build on darwin.

+2 -8
+2 -8
pkgs/development/libraries/fltk/default.nix
··· 6 6 7 7 let inherit (composableDerivation) edf; in 8 8 9 - let version = "1.3.3"; in 9 + let version = "1.3.4"; in 10 10 composableDerivation.composableDerivation {} { 11 11 name = "fltk-${version}"; 12 12 13 13 src = fetchurl { 14 14 url = "http://fltk.org/pub/fltk/${version}/fltk-${version}-source.tar.gz"; 15 - sha256 = "15qd7lkz5d5ynz70xhxhigpz3wns39v9xcf7ggkl0792syc8sfgq"; 15 + sha256 = "13y57pnayrkfzm8azdfvysm8b77ysac8zhhdsh8kxmb0x3203ay8"; 16 16 }; 17 - 18 - # http://www.fltk.org/str.php?L3156 19 - postPatch = '' 20 - substituteInPlace FL/x.H \ 21 - --replace 'class Fl_XFont_On_Demand' 'class FL_EXPORT Fl_XFont_On_Demand' 22 - ''; 23 17 24 18 patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ]; 25 19