2013-02-04 22:31:10 +00:00
|
|
|
{ fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2
|
2015-05-24 18:36:36 +01:00
|
|
|
, python, perl, gdk_pixbuf, libiconv, libintlOrEmpty }:
|
2009-09-30 14:11:09 +01:00
|
|
|
|
2013-02-04 22:31:10 +00:00
|
|
|
with { inherit (stdenv.lib) optionals; };
|
2005-10-26 13:44:44 +01:00
|
|
|
|
2007-11-14 23:44:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-14 22:36:22 +00:00
|
|
|
name = "libgsf-1.14.41";
|
2009-09-30 14:11:09 +01:00
|
|
|
|
2005-10-26 13:44:44 +01:00
|
|
|
src = fetchurl {
|
2013-09-07 01:09:11 +01:00
|
|
|
url = "mirror://gnome/sources/libgsf/1.14/${name}.tar.xz";
|
2016-12-14 22:36:22 +00:00
|
|
|
sha256 = "1lq87wnrsjbjafpk3c8xwd56gqx319fhck9xkg2da88hd9c9h2qm";
|
2005-10-26 13:44:44 +01:00
|
|
|
};
|
2009-09-30 14:11:09 +01:00
|
|
|
|
2013-02-04 22:31:10 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2013-09-07 01:09:11 +01:00
|
|
|
|
2015-05-24 18:36:36 +01:00
|
|
|
buildInputs = [ gettext bzip2 zlib python ]
|
|
|
|
++ stdenv.lib.optional doCheck perl;
|
2009-11-03 21:48:09 +00:00
|
|
|
|
2014-11-26 23:16:50 +00:00
|
|
|
propagatedBuildInputs = [ libxml2 glib gdk_pixbuf libiconv ]
|
2013-09-07 01:09:11 +01:00
|
|
|
++ libintlOrEmpty;
|
2009-11-03 21:48:09 +00:00
|
|
|
|
2009-09-30 14:11:09 +01:00
|
|
|
doCheck = true;
|
2015-05-24 18:36:36 +01:00
|
|
|
preCheck = "patchShebangs ./tests/";
|
2007-11-14 23:44:21 +00:00
|
|
|
|
2013-09-07 01:09:11 +01:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-09-30 14:11:09 +01:00
|
|
|
description = "GNOME's Structured File Library";
|
2013-09-07 01:09:11 +01:00
|
|
|
homepage = http://www.gnome.org/projects/libgsf;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-09-30 14:11:09 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Libgsf aims to provide an efficient extensible I/O abstraction for
|
|
|
|
dealing with different structured file formats.
|
|
|
|
'';
|
2007-11-14 23:44:21 +00:00
|
|
|
};
|
2005-10-26 13:44:44 +01:00
|
|
|
}
|