2009-09-30 15:11:09 +02:00
|
|
|
{ fetchurl, stdenv, perl, perlXMLParser, pkgconfig, libxml2
|
2012-01-06 21:10:15 +01:00
|
|
|
, glib, gettext, intltool, bzip2, xz
|
2011-10-08 14:06:03 +02:00
|
|
|
, gnome_vfs, libbonobo, python }:
|
2009-09-30 15:11:09 +02:00
|
|
|
|
2005-10-26 14:44:44 +02:00
|
|
|
|
2007-11-15 00:44:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-01-06 21:10:15 +01:00
|
|
|
name = "libgsf-1.14.22";
|
2009-09-30 15:11:09 +02:00
|
|
|
|
2005-10-26 14:44:44 +02:00
|
|
|
src = fetchurl {
|
2012-01-06 21:10:15 +01:00
|
|
|
url = mirror://gnome/sources/libgsf/1.14/libgsf-1.14.22.tar.xz;
|
|
|
|
sha256 = "0gvq1gbbcl078s3kgdc508jp7p3a3ps34fj4pf8vsamprbikpwm5";
|
2005-10-26 14:44:44 +02:00
|
|
|
};
|
2009-09-30 15:11:09 +02:00
|
|
|
|
2012-01-06 21:10:15 +01:00
|
|
|
buildNativeInputs = [ xz intltool pkgconfig ];
|
2009-11-03 22:48:09 +01:00
|
|
|
buildInputs =
|
2012-01-06 21:10:15 +01:00
|
|
|
[ perl perlXMLParser gettext bzip2 gnome_vfs python ];
|
2009-11-03 22:48:09 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libxml2 libbonobo ];
|
|
|
|
|
2009-09-30 15:11:09 +02:00
|
|
|
doCheck = true;
|
2007-11-15 00:44:21 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-09-30 15:11:09 +02:00
|
|
|
homepage = http://www.gnome.org/projects/libgsf;
|
|
|
|
license = "LGPLv2";
|
|
|
|
description = "GNOME's Structured File Library";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Libgsf aims to provide an efficient extensible I/O abstraction for
|
|
|
|
dealing with different structured file formats.
|
|
|
|
'';
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2007-11-15 00:44:21 +01:00
|
|
|
};
|
2005-10-26 14:44:44 +02:00
|
|
|
}
|