libgsf 1.14.9.

svn path=/nixpkgs/trunk/; revision=17549
This commit is contained in:
Ludovic Courtès 2009-09-30 13:11:09 +00:00
parent 35ae15d5fa
commit f4b739fde0
2 changed files with 27 additions and 9 deletions

View File

@ -1,17 +1,34 @@
args: with args; { fetchurl, stdenv, perl, perlXMLParser, pkgconfig, libxml2
, glib, gettext, intltool, bzip2
, gnomevfs, libbonobo, python }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libgsf-1.14.7"; name = "libgsf-1.14.9";
src = fetchurl { src = fetchurl {
url = "http://ftp.gnome.org/pub/gnome/sources/libgsf/1.14/${name}.tar.bz2"; url = "http://ftp.gnome.org/pub/gnome/sources/libgsf/1.14/${name}.tar.bz2";
sha256 = "0vd8arjaavb3qywd9cm2gdn6ngrlyd99nlsj72par8fm60k48bhq"; sha256 = "1mkw60052sd6k9sq8ppz4yra0s3sdinngqi6bcmrj9977zk8yqfi";
}; };
buildInputs = [perl perlXMLParser pkgconfig libxml2 glib gettext bzip2
gnomevfs libbonobo python]; buildInputs = [
perl perlXMLParser pkgconfig libxml2 glib gettext bzip2
gnomevfs libbonobo python intltool
];
doCheck = true;
meta = { meta = {
homepage = http://www.gnome.org/projects/libgsf; homepage = http://www.gnome.org/projects/libgsf;
license = "LGPL"; license = "LGPLv2";
description = "GNOME Structured File Library"; 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;
}; };
} }

View File

@ -3699,7 +3699,8 @@ let
}; };
libgsf = import ../development/libraries/libgsf { libgsf = import ../development/libraries/libgsf {
inherit fetchurl stdenv perl perlXMLParser pkgconfig libxml2 gettext bzip2 python; inherit fetchurl stdenv perl perlXMLParser pkgconfig libxml2
intltool gettext bzip2 python;
inherit (gnome) glib gnomevfs libbonobo; inherit (gnome) glib gnomevfs libbonobo;
}; };