gnome3.gucharmap: clean up

This commit is contained in:
Jan Tojnar 2018-03-15 00:42:01 +01:00
parent 2c894fb147
commit 389837b139
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,11 +1,8 @@
{ stdenv, intltool, fetchurl, pkgconfig, gtk3 { stdenv, intltool, fetchurl, pkgconfig, gtk3, defaultIconTheme
, glib, desktop-file-utils, bash, appdata-tools , glib, desktop-file-utils, bash, appdata-tools
, wrapGAppsHook, gnome3, itstool, libxml2 , wrapGAppsHook, gnome3, itstool, libxml2
, callPackage, unzip, gobjectIntrospection }: , callPackage, unzip, gobjectIntrospection }:
# TODO: icons and theme still does not work
# use packaged gnome3.adwaita-icon-theme
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gucharmap-${version}"; name = "gucharmap-${version}";
version = "10.0.4"; version = "10.0.4";
@ -21,8 +18,6 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
propagatedUserEnvPkgs = [ gnome3.gnome-themes-standard ];
preConfigure = "patchShebangs gucharmap/gen-guch-unicode-tables.pl"; preConfigure = "patchShebangs gucharmap/gen-guch-unicode-tables.pl";
nativeBuildInputs = [ nativeBuildInputs = [
@ -30,7 +25,7 @@ stdenv.mkDerivation rec {
gnome3.yelp-tools libxml2 desktop-file-utils gobjectIntrospection gnome3.yelp-tools libxml2 desktop-file-utils gobjectIntrospection
]; ];
buildInputs = [ gtk3 glib gnome3.gsettings-desktop-schemas ]; buildInputs = [ gtk3 glib gnome3.gsettings-desktop-schemas defaultIconTheme ];
unicode-data = callPackage ./unicode-data.nix {}; unicode-data = callPackage ./unicode-data.nix {};