2022-03-30 09:31:56 +00:00
|
|
|
{ fetchurl
|
|
|
|
, lib
|
|
|
|
, stdenv
|
|
|
|
, pkg-config
|
|
|
|
, intltool
|
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, libxml2
|
|
|
|
, zlib
|
|
|
|
, bzip2
|
|
|
|
, perl
|
|
|
|
, gdk-pixbuf
|
|
|
|
, libiconv
|
|
|
|
, libintl
|
|
|
|
, gnome
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libgsf";
|
2022-07-18 16:21:45 +00:00
|
|
|
version = "1.14.50";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-05 17:12:51 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2022-07-18 16:21:45 +00:00
|
|
|
sha256 = "bmwg0HeDOQadWDwNY3WdKX6BfqENDYl+u+ll8W4ujlI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
intltool
|
|
|
|
libintl
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
buildInputs = [
|
|
|
|
gettext
|
|
|
|
bzip2
|
|
|
|
zlib
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
checkInputs = [
|
|
|
|
perl
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
libxml2
|
|
|
|
glib
|
|
|
|
gdk-pixbuf
|
|
|
|
libiconv
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
patchShebangs ./tests/
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
# checking pkg-config is at least version 0.9.0... ./configure: line 15213: no: command not found
|
|
|
|
# configure: error: in `/build/libgsf-1.14.50':
|
|
|
|
# configure: error: The pkg-config script could not be found or is too old. Make sure it
|
|
|
|
# is in your PATH or set the PKG_CONFIG environment variable to the full
|
|
|
|
preConfigure = ''
|
|
|
|
export PKG_CONFIG="$(command -v "$PKG_CONFIG")"
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
passthru = {
|
2021-05-20 23:08:51 +00:00
|
|
|
updateScript = gnome.updateScript {
|
2020-04-24 23:36:52 +00:00
|
|
|
packageName = pname;
|
2021-05-20 23:08:51 +00:00
|
|
|
versionPolicy = "odd-unstable";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "GNOME's Structured File Library";
|
2022-03-30 09:31:56 +00:00
|
|
|
homepage = "https://www.gnome.org/projects/libgsf";
|
|
|
|
license = licenses.lgpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2022-03-30 09:31:56 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Libgsf aims to provide an efficient extensible I/O abstraction for
|
|
|
|
dealing with different structured file formats.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|