pspp: 1.0.1 -> 1.2.0, fix build w/glibc-2.30

This commit is contained in:
Maximilian Bosch 2020-01-30 15:19:44 +01:00
parent 1203742766
commit abefd4f78a
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -1,20 +1,23 @@
{ stdenv, fetchurl, libxml2, readline, zlib, perl, cairo, gtk3, gsl
, pkgconfig, gtksourceview, pango, gettext, dconf
, makeWrapper, gsettings-desktop-schemas, hicolor-icon-theme
, texinfo, ssw
}:
stdenv.mkDerivation rec {
name = "pspp-1.0.1";
pname = "pspp";
version = "1.2.0";
src = fetchurl {
url = "mirror://gnu/pspp/${name}.tar.gz";
sha256 = "1r8smr5057993h90nx0mdnff8nxw9x546zzh6qpy4h3xblp1la5s";
url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
sha256 = "07pp27zycrb5x927jwaj9r3q7hy915jh51xs85zxby6gfiwl63m5";
};
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig texinfo ];
buildInputs = [ libxml2 readline zlib perl cairo gtk3 gsl
gtksourceview pango gettext
makeWrapper gsettings-desktop-schemas hicolor-icon-theme ];
makeWrapper gsettings-desktop-schemas hicolor-icon-theme ssw
];
doCheck = false;