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

46 lines
1.1 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, intltool, glib, gtk3, lasem
2018-12-24 11:37:51 +00:00
, libgsf, libxml2, libxslt, cairo, pango, librsvg, gnome3 }:
2015-04-10 15:02:57 +00:00
stdenv.mkDerivation rec {
2018-12-24 11:37:51 +00:00
pname = "goffice";
version = "0.10.45";
2015-04-10 15:02:57 +00:00
outputs = [ "out" "dev" "devdoc" ];
2015-04-10 15:02:57 +00:00
src = fetchurl {
2018-12-24 11:37:51 +00:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "702ba567e9ec0bbdd9b1a8161cd24648b4868d57a6cb89128f13c125f6f31947";
2015-04-10 15:02:57 +00:00
};
nativeBuildInputs = [ pkgconfig intltool ];
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 = gnome3.updateScript {
packageName = pname;
};
};
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 = stdenv.lib.licenses.gpl2Plus;
2017-05-04 19:41:54 +00:00
platforms = stdenv.lib.platforms.unix;
2015-04-10 15:02:57 +00:00
};
}