Merge pull request #245215 from idlip/pspp-bump

pspp: 1.4.1 -> 1.6.2
This commit is contained in:
Lassulus 2023-08-14 20:34:03 +02:00 committed by GitHub
commit 43fd3a94bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,23 +1,28 @@
{ lib, stdenv, fetchurl, libxml2, readline, zlib, perl, cairo, gtk3, gsl
, pkg-config, gtksourceview, pango, gettext, dconf
, pkg-config, gtksourceview4, pango, gettext, dconf
, makeWrapper, gsettings-desktop-schemas, hicolor-icon-theme
, texinfo, ssw, python3
, texinfo, ssw, python3, iconv
}:
stdenv.mkDerivation rec {
pname = "pspp";
version = "1.4.1";
version = "1.6.2";
src = fetchurl {
url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
sha256 = "0lqrash677b09zxdlxp89z6k02y4i23mbqg83956dwl69wc53dan";
sha256 = "sha256-cylMovWy9/xBu/i3jFiIyAdfQ8YJf9SCq7BPhasIR7Y=";
};
nativeBuildInputs = [ pkg-config texinfo python3 makeWrapper ];
buildInputs = [ libxml2 readline zlib perl cairo gtk3 gsl
gtksourceview pango gettext
gsettings-desktop-schemas hicolor-icon-theme ssw
];
gtksourceview4 pango gettext
gsettings-desktop-schemas hicolor-icon-theme ssw iconv
];
C_INCLUDE_PATH =
"${libxml2.dev}/include/libxml2/:" +
lib.makeSearchPathOutput "dev" "include" buildInputs;
LIBRARY_PATH = lib.makeLibraryPath buildInputs;
doCheck = false;