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

47 lines
1.1 KiB
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, pkg-config, intltool, glib, gtk3, lasem
, libgsf, libxml2, libxslt, cairo, pango, librsvg, gnome }:
2015-04-10 15:02:57 +00:00
stdenv.mkDerivation rec {
2018-12-24 11:37:51 +00:00
pname = "goffice";
2021-03-16 07:01:46 +00:00
version = "0.10.49";
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";
2021-03-16 07:01:46 +00:00
sha256 = "X/wY27OF7fuFtsYlS55bTLPS/6MEK5Ms286ON/SzB+k=";
2015-04-10 15:02:57 +00:00
};
nativeBuildInputs = [ pkg-config intltool ];
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;
doCheck = 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
};
}