mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
goffice: add lasem support
Also split outputs
This commit is contained in:
parent
9cf3c1f52e
commit
dd3eea4b47
1 changed files with 5 additions and 3 deletions
|
@ -1,10 +1,12 @@
|
|||
{ fetchurl, stdenv, pkgconfig, intltool, glib, gtk3
|
||||
{ fetchurl, stdenv, pkgconfig, intltool, glib, gtk3, lasem
|
||||
, libgsf, libxml2, libxslt, cairo, pango, librsvg, gnome3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "goffice";
|
||||
version = "0.10.44";
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "1fd7cm6j0g0mqgpqs4y22b4gd2ll4mcyvg4d0q22d5ndjapl4q3d";
|
||||
|
@ -12,8 +14,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
|
||||
propagatedBuildInputs = [ # ToDo lasem library for MathML, opt. introspection?
|
||||
glib gtk3 libxml2 cairo pango libgsf
|
||||
propagatedBuildInputs = [
|
||||
glib gtk3 libxml2 cairo pango libgsf lasem
|
||||
];
|
||||
|
||||
buildInputs = [ libxslt librsvg ];
|
||||
|
|
Loading…
Reference in a new issue