2013-02-04 14:31:10 -08:00
|
|
|
{ fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2
|
2018-03-14 12:15:06 -07:00
|
|
|
, python, perl, gdk_pixbuf, libiconv, libintl }:
|
2009-09-30 06:11:09 -07:00
|
|
|
|
2007-11-14 15:44:21 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2018-09-05 07:55:35 -07:00
|
|
|
name = "libgsf-1.14.44";
|
2009-09-30 06:11:09 -07:00
|
|
|
|
2005-10-26 05:44:44 -07:00
|
|
|
src = fetchurl {
|
2013-09-06 17:09:11 -07:00
|
|
|
url = "mirror://gnome/sources/libgsf/1.14/${name}.tar.xz";
|
2018-09-05 07:55:35 -07:00
|
|
|
sha256 = "1ppzfk3zmmgrg9jh8vc4dacddbfngjslq2wpj94pcr3i0c8dxgk8";
|
2005-10-26 05:44:44 -07:00
|
|
|
};
|
2009-09-30 06:11:09 -07:00
|
|
|
|
2018-03-14 12:15:06 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool libintl ];
|
2013-09-06 17:09:11 -07:00
|
|
|
|
2018-08-08 11:48:18 -07:00
|
|
|
buildInputs = [ gettext bzip2 zlib python ];
|
|
|
|
checkInputs = [ perl ];
|
2009-11-03 13:48:09 -08:00
|
|
|
|
2018-03-14 12:15:06 -07:00
|
|
|
propagatedBuildInputs = [ libxml2 glib gdk_pixbuf libiconv ];
|
2009-11-03 13:48:09 -08:00
|
|
|
|
2017-03-30 13:51:15 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2009-09-30 06:11:09 -07:00
|
|
|
doCheck = true;
|
2015-05-24 10:36:36 -07:00
|
|
|
preCheck = "patchShebangs ./tests/";
|
2007-11-14 15:44:21 -08:00
|
|
|
|
2013-09-06 17:09:11 -07:00
|
|
|
meta = with stdenv.lib; {
|
2009-09-30 06:11:09 -07:00
|
|
|
description = "GNOME's Structured File Library";
|
2017-08-02 14:50:51 -07:00
|
|
|
homepage = https://www.gnome.org/projects/libgsf;
|
2013-09-06 17:09:11 -07:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-09-30 06:11:09 -07:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Libgsf aims to provide an efficient extensible I/O abstraction for
|
|
|
|
dealing with different structured file formats.
|
|
|
|
'';
|
2007-11-14 15:44:21 -08:00
|
|
|
};
|
2005-10-26 05:44:44 -07:00
|
|
|
}
|