mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Add GOffice, GNOME's office/document library.
svn path=/nixpkgs/trunk/; revision=17550
This commit is contained in:
parent
f4b739fde0
commit
a29f9b51d6
40
pkgs/development/libraries/goffice/default.nix
Normal file
40
pkgs/development/libraries/goffice/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ fetchurl, stdenv, pkgconfig, glib, gtk, libglade, bzip2
|
||||
, pango, libgsf, libxml2, libart, intltool, gettext
|
||||
, cairo, gconf, libgnomeui }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "goffice-0.6.6";
|
||||
|
||||
src = fetchurl {
|
||||
# An old version, but one that's actually usable for Gnucash.
|
||||
url = "mirror://gnome/sources/goffice/0.6/${name}.tar.bz2";
|
||||
sha256 = "11lzhmk7g6mdsbyn4p4a6q2d9m8j71vad2haw6pmzyjzv2gs4rq7";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig libglade bzip2 libart intltool gettext
|
||||
gconf libgnomeui
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# All these are in the "Requires:" field of `libgoffice-0.6.pc'.
|
||||
glib libgsf libxml2 gtk libglade libart cairo pango
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "GOffice, a Glib/GTK+ set of document centric objects and utilities";
|
||||
|
||||
longDescription = ''
|
||||
There are common operations for document centric applications that are
|
||||
conceptually simple, but complex to implement fully: plugins, load/save
|
||||
documents, undo/redo.
|
||||
'';
|
||||
|
||||
license = "GPLv2";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
platforms = stdenv.lib.platforms.gnu;
|
||||
};
|
||||
}
|
|
@ -3324,6 +3324,14 @@ let
|
|||
cxx = true;
|
||||
};
|
||||
|
||||
goffice = import ../development/libraries/goffice {
|
||||
inherit fetchurl stdenv pkgconfig libgsf libxml2 cairo
|
||||
intltool gettext bzip2;
|
||||
inherit (gnome) glib gtk libglade libgnomeui pango;
|
||||
gconf = gnome.GConf;
|
||||
libart = gnome.libart_lgpl;
|
||||
};
|
||||
|
||||
goocanvas = import ../development/libraries/goocanvas {
|
||||
inherit fetchurl stdenv pkgconfig cairo;
|
||||
inherit (gnome) gtk glib;
|
||||
|
|
Loading…
Reference in a new issue