nixpkgs/pkgs/development/libraries/libgsf/default.nix
Yury G. Kudryashov 9c031cec1b Added python to libgsf dependencies
svn path=/nixpkgs/trunk/; revision=9699
2007-11-15 23:47:03 +00:00

18 lines
485 B
Nix

args: with args;
stdenv.mkDerivation rec {
name = "libgsf-1.14.7";
src = fetchurl {
url = "http://ftp.gnome.org/pub/gnome/sources/libgsf/1.14/${name}.tar.bz2";
sha256 = "0vd8arjaavb3qywd9cm2gdn6ngrlyd99nlsj72par8fm60k48bhq";
};
buildInputs = [perl perlXMLParser pkgconfig libxml2 glib gettext bzip2
gnomevfs libbonobo python];
meta = {
homepage = http://www.gnome.org/projects/libgsf;
license = "LGPL";
description = "GNOME Structured File Library";
};
}