nixpkgs/pkgs/development/libraries/goffice/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.2 KiB
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, pkg-config, intltool, glib, gtk3, lasem
, libgsf, libxml2, libxslt, cairo, pango, librsvg, gnome
, autoreconfHook
, gtk-doc
}:
2015-04-10 15:02:57 +00:00
stdenv.mkDerivation rec {
2018-12-24 11:37:51 +00:00
pname = "goffice";
version = "0.10.55";
2015-04-10 15:02:57 +00:00
outputs = [ "out" "dev" "devdoc" ];
2015-04-10 15:02:57 +00:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "FqIhGRhVpqbA0Gse+OSBzz9SBBplTsltNYFwRboama8=";
2015-04-10 15:02:57 +00:00
};
nativeBuildInputs = [
pkg-config intltool autoreconfHook gtk-doc
glib # for glib-genmarshal
];
2015-04-10 15:02:57 +00:00
propagatedBuildInputs = [
glib gtk3 libxml2 cairo pango libgsf lasem
2015-04-10 15:02:57 +00:00
];
buildInputs = [ libxslt librsvg ];
enableParallelBuilding = true;
2018-12-24 11:37:51 +00:00
passthru = {
updateScript = gnome.updateScript {
2018-12-24 11:37:51 +00:00
packageName = pname;
versionPolicy = "odd-unstable";
2018-12-24 11:37:51 +00:00
};
};
2015-04-10 15:02:57 +00:00
meta = {
description = "A Glib/GTK set of document centric objects and utilities";
2015-04-10 15:02:57 +00:00
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 = lib.licenses.gpl2Plus;
2015-04-10 15:02:57 +00:00
platforms = lib.platforms.unix;
2015-04-10 15:02:57 +00:00
};
}