summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/gnome-dictionary/default.nix
blob: da28d6382624d39080735458cc79d70d4a5507a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchurl, meson, ninja, pkgconfig, desktop_file_utils, appstream-glib, libxslt
, libxml2, gettext, itstool, wrapGAppsHook, docbook_xsl, docbook_xml_dtd_43
, gnome3, gtk, glib }:

stdenv.mkDerivation rec {
  inherit (import ./src.nix fetchurl) name src;

  doCheck = true;

  propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
  propagatedBuildInputs = [ gnome3.defaultIconTheme ];

  nativeBuildInputs = [ meson ninja pkgconfig wrapGAppsHook libxml2 gettext itstool
                        desktop_file_utils appstream-glib libxslt docbook_xsl ];
  buildInputs = [ gtk glib gnome3.gsettings_desktop_schemas ];

  postPatch = ''
    substituteInPlace data/meson.build --replace \
      "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl" \
      "${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"

    substituteInPlace data/gnome-dictionary.xml --replace \
      http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd \
      ${docbook_xml_dtd_43}/xml/dtd/docbook/docbookx.dtd
  '';

  checkPhase = "meson test";

  meta = with stdenv.lib; {
    homepage = https://wiki.gnome.org/Apps/Dictionary;
    description = "Dictionary is the GNOME application to look up definitions";
    maintainers = gnome3.maintainers;
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}