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

60 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, intltool, fetchFromGitLab, pkgconfig, gtk3, adwaita-icon-theme
, glib, desktop-file-utils, gtk-doc, autoconf, automake, libtool
, wrapGAppsHook, gnome3, itstool, libxml2, yelp-tools
, docbook_xsl, docbook_xml_dtd_412, gsettings-desktop-schemas
, callPackage, unzip, gobject-introspection }:
2018-07-14 14:51:42 +01:00
let
unicode-data = callPackage ./unicode-data.nix {};
in stdenv.mkDerivation rec {
pname = "gucharmap";
version = "12.0.1";
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 = "0si3ymyfzc5v7ly0dmcs3qgw2wp8cyasycq5hmcr8frl09lr6gkw";
};
nativeBuildInputs = [
pkgconfig wrapGAppsHook unzip intltool itstool
autoconf automake libtool gtk-doc docbook_xsl docbook_xml_dtd_412
yelp-tools libxml2 desktop-file-utils gobject-introspection
];
2019-02-13 21:47:50 +00:00
buildInputs = [ gtk3 glib gsettings-desktop-schemas adwaita-icon-theme ];
2018-07-14 14:51:42 +01:00
configureFlags = [
"--with-unicode-data=${unicode-data}"
"--enable-gtk-doc"
2018-07-14 14:51:42 +01:00
];
2018-07-14 14:51:42 +01:00
doCheck = true;
postPatch = ''
patchShebangs gucharmap/gen-guch-unicode-tables.pl
'';
preConfigure = ''
NOCONFIGURE=1 ./autogen.sh
'';
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";
2018-07-14 14:51:42 +01:00
homepage = https://wiki.gnome.org/Apps/Gucharmap;
license = licenses.gpl3;
2018-07-14 14:51:42 +01:00
maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}