9c031cec1b
svn path=/nixpkgs/trunk/; revision=9699
18 lines
485 B
Nix
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";
|
|
};
|
|
}
|