pspp: 1.4.1 -> 1.6.2

Note: needs ssw >= 0.7

Dilip 401be824 6233fa36

+12 -7
+12 -7
pkgs/applications/science/math/pspp/default.nix
··· 1 1 { lib, stdenv, fetchurl, libxml2, readline, zlib, perl, cairo, gtk3, gsl 2 - , pkg-config, gtksourceview, pango, gettext, dconf 2 + , pkg-config, gtksourceview4, pango, gettext, dconf 3 3 , makeWrapper, gsettings-desktop-schemas, hicolor-icon-theme 4 - , texinfo, ssw, python3 4 + , texinfo, ssw, python3, iconv 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "pspp"; 9 - version = "1.4.1"; 9 + version = "1.6.2"; 10 10 11 11 src = fetchurl { 12 12 url = "mirror://gnu/pspp/${pname}-${version}.tar.gz"; 13 - sha256 = "0lqrash677b09zxdlxp89z6k02y4i23mbqg83956dwl69wc53dan"; 13 + sha256 = "sha256-cylMovWy9/xBu/i3jFiIyAdfQ8YJf9SCq7BPhasIR7Y="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ pkg-config texinfo python3 makeWrapper ]; 17 17 buildInputs = [ libxml2 readline zlib perl cairo gtk3 gsl 18 - gtksourceview pango gettext 19 - gsettings-desktop-schemas hicolor-icon-theme ssw 20 - ]; 18 + gtksourceview4 pango gettext 19 + gsettings-desktop-schemas hicolor-icon-theme ssw iconv 20 + ]; 21 + 22 + C_INCLUDE_PATH = 23 + "${libxml2.dev}/include/libxml2/:" + 24 + lib.makeSearchPathOutput "dev" "include" buildInputs; 25 + LIBRARY_PATH = lib.makeLibraryPath buildInputs; 21 26 22 27 doCheck = false; 23 28