3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-3/core/gnome-dictionary/default.nix

37 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, pkgconfig, desktop-file-utils, appstream-glib, libxslt
2017-10-04 22:50:14 +01:00
, libxml2, gettext, itstool, wrapGAppsHook, docbook_xsl, docbook_xml_dtd_43
2019-02-13 21:47:50 +00:00
, gnome3, gtk3, glib }:
stdenv.mkDerivation rec {
name = "gnome-dictionary-${version}";
version = "3.26.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-dictionary/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "16b8bc248dcf68987826d5e39234b1bb7fd24a2607fcdbf4258fde88f012f300";
};
doCheck = true;
2018-03-22 18:55:12 +00:00
nativeBuildInputs = [
meson ninja pkgconfig wrapGAppsHook libxml2 gettext itstool
desktop-file-utils appstream-glib libxslt docbook_xsl docbook_xml_dtd_43
];
2019-02-13 21:47:50 +00:00
buildInputs = [ gtk3 glib gnome3.gsettings-desktop-schemas gnome3.adwaita-icon-theme ];
2017-10-04 22:50:14 +01:00
2018-03-22 18:55:12 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "gnome-dictionary";
attrPath = "gnome3.gnome-dictionary";
};
};
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;
};
}