nixpkgs/pkgs/desktops/gnome-3/core/gucharmap/default.nix

109 lines
2.0 KiB
Nix
Raw Normal View History

2019-11-07 18:07:58 +00:00
{ stdenv
, intltool
, fetchFromGitLab
, meson
, ninja
2019-11-07 18:07:58 +00:00
, pkgconfig
, python3
2019-11-07 18:07:58 +00:00
, gtk3
, adwaita-icon-theme
, glib
, desktop-file-utils
, gtk-doc
, wrapGAppsHook
, gnome3
, itstool
, libxml2
, yelp-tools
, docbook_xsl
, docbook_xml_dtd_412
, gsettings-desktop-schemas
, callPackage
, unzip
2019-11-07 22:12:52 +00:00
, unicode-character-database
, unihan-database
, runCommand
, symlinkJoin
2019-11-07 18:07:58 +00:00
, gobject-introspection
}:
2018-07-14 14:51:42 +01:00
let
2019-11-07 22:12:52 +00:00
# TODO: make upstream patch allowing to use the uncompressed file,
# preferably from XDG_DATA_DIRS.
# https://gitlab.gnome.org/GNOME/gucharmap/issues/13
unihanZip = runCommand "unihan" {} ''
mkdir -p $out/share/unicode
ln -s ${unihan-database.src} $out/share/unicode/Unihan.zip
'';
ucd = symlinkJoin {
name = "ucd+unihan";
paths = [
unihanZip
unicode-character-database
];
};
in stdenv.mkDerivation rec {
pname = "gucharmap";
version = "13.0.2";
2018-07-14 14:51:42 +01:00
outputs = [ "out" "lib" "dev" "devdoc" ];
2018-07-14 14:51:42 +01:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = pname;
2018-07-14 14:51:42 +01:00
rev = version;
sha256 = "099za9mc6qdq9pwcbjp3d7hxjbaa43vk2w9qw4yiyswl1xq3jw62";
};
nativeBuildInputs = [
meson
ninja
2019-11-07 18:07:58 +00:00
pkgconfig
python3
2019-11-07 18:07:58 +00:00
wrapGAppsHook
unzip
intltool
itstool
gtk-doc
docbook_xsl
docbook_xml_dtd_412
yelp-tools
libxml2
desktop-file-utils
gobject-introspection
];
2019-11-07 18:07:58 +00:00
buildInputs = [
gtk3
glib
gsettings-desktop-schemas
adwaita-icon-theme
];
mesonFlags = [
"-Ducd_path=${ucd}/share/unicode"
"-Dvapi=false"
2018-07-14 14:51:42 +01:00
];
2018-07-14 14:51:42 +01:00
doCheck = true;
postPatch = ''
patchShebangs data/meson_desktopfile.py gucharmap/gen-guch-unicode-tables.pl gucharmap/meson_compileschemas.py
2018-07-14 14:51:42 +01:00
'';
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
2018-07-14 14:51:42 +01:00
};
};
meta = with stdenv.lib; {
description = "GNOME Character Map, based on the Unicode Character Database";
2019-11-07 18:07:58 +00:00
homepage = "https://wiki.gnome.org/Apps/Gucharmap";
license = licenses.gpl3;
maintainers = teams.gnome.members;
platforms = platforms.linux;
};
}