nixpkgs/pkgs/development/libraries/libgsf/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, pkg-config, intltool, gettext, glib, libxml2, zlib, bzip2
, perl, gdk-pixbuf, libiconv, libintl, gnome }:
stdenv.mkDerivation rec {
2018-12-24 03:22:07 +00:00
pname = "libgsf";
2020-05-05 18:48:06 +00:00
version = "1.14.47";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-05-05 18:48:06 +00:00
sha256 = "0kbpp9ksl7977xiga37sk1gdw1r039v6zviqznl7alvvg39yp26i";
};
nativeBuildInputs = [ pkg-config intltool libintl ];
buildInputs = [ gettext bzip2 zlib ];
2018-08-08 18:48:18 +00:00
checkInputs = [ perl ];
2019-05-22 11:03:39 +00:00
propagatedBuildInputs = [ libxml2 glib gdk-pixbuf libiconv ];
2017-03-30 20:51:15 +00:00
outputs = [ "out" "dev" ];
doCheck = true;
preCheck = "patchShebangs ./tests/";
2018-12-24 03:22:07 +00:00
passthru = {
updateScript = gnome.updateScript {
2018-12-24 03:22:07 +00:00
packageName = pname;
versionPolicy = "odd-unstable";
2018-12-24 03:22:07 +00:00
};
};
meta = with lib; {
description = "GNOME's Structured File Library";
homepage = "https://www.gnome.org/projects/libgsf";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ lovek323 ];
platforms = lib.platforms.unix;
longDescription = ''
Libgsf aims to provide an efficient extensible I/O abstraction for
dealing with different structured file formats.
'';
};
}