mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
114 lines
2.2 KiB
Nix
114 lines
2.2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, intltool
|
|
, fetchFromGitLab
|
|
, meson
|
|
, mesonEmulatorHook
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, gtk3
|
|
, pcre2
|
|
, glib
|
|
, desktop-file-utils
|
|
, gtk-doc
|
|
, wrapGAppsHook3
|
|
, itstool
|
|
, libxml2
|
|
, yelp-tools
|
|
, docbook_xsl
|
|
, docbook_xml_dtd_412
|
|
, gsettings-desktop-schemas
|
|
, unzip
|
|
, unicode-character-database
|
|
, unihan-database
|
|
, runCommand
|
|
, symlinkJoin
|
|
, gobject-introspection
|
|
, gitUpdater
|
|
}:
|
|
|
|
let
|
|
# 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 (finalAttrs: {
|
|
pname = "gucharmap";
|
|
version = "15.1.5";
|
|
|
|
outputs = [ "out" "lib" "dev" "devdoc" ];
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "GNOME";
|
|
repo = "gucharmap";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-PG86D8QvqHdmo3aJseCerngmuWUqtSMdWzbixWE2HOQ=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook3
|
|
unzip
|
|
intltool
|
|
itstool
|
|
gtk-doc
|
|
docbook_xsl
|
|
docbook_xml_dtd_412
|
|
yelp-tools
|
|
libxml2
|
|
desktop-file-utils
|
|
gobject-introspection
|
|
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
|
mesonEmulatorHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
gsettings-desktop-schemas
|
|
pcre2
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Ducd_path=${ucd}/share/unicode"
|
|
"-Dvapi=false"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs \
|
|
data/meson_desktopfile.py \
|
|
gucharmap/gen-guch-unicode-tables.pl
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GNOME Character Map, based on the Unicode Character Database";
|
|
mainProgram = "gucharmap";
|
|
homepage = "https://gitlab.gnome.org/GNOME/gucharmap";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|