forked from mirrors/nixpkgs
Merge pull request #1763 from lethalman/gucharmap
gnome3.gucharmap: new package
This commit is contained in:
commit
ee06eb5f35
42
pkgs/desktops/gnome-3/core/gucharmap/default.nix
Normal file
42
pkgs/desktops/gnome-3/core/gucharmap/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ stdenv, intltool, fetchurl, pkgconfig, gtk3
|
||||
, glib, desktop_file_utils, bash
|
||||
, makeWrapper, gnome3, file, itstool, libxml2 }:
|
||||
|
||||
# TODO: icons and theme still does not work
|
||||
# use packaged gnome3.gnome_icon_theme_symbolic
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gucharmap-3.10.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gucharmap/3.10/${name}.tar.xz";
|
||||
sha256 = "04e8606c65adb14d267b50b1cf9eb4fee92bd9c5ab512a346bd4c9c686403f78";
|
||||
};
|
||||
|
||||
configureFlags = [ "--disable-static" ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
||||
|
||||
preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file";
|
||||
|
||||
buildInputs = [ pkgconfig gtk3 intltool itstool glib
|
||||
gnome3.yelp_tools libxml2 file desktop_file_utils
|
||||
gnome3.gsettings_desktop_schemas makeWrapper ];
|
||||
|
||||
installFlags = "gsettingsschemadir=\${out}/share/${name}/glib-2.0/schemas/";
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/gucharmap" \
|
||||
--prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:${gnome3.gsettings_desktop_schemas}/share:$out/share:$out/share/${name}"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Gucharmap;
|
||||
description = "GNOME Character Map, based on the Unicode Character Database";
|
||||
maintainers = with maintainers; [ lethalman ];
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -60,6 +60,8 @@ rec {
|
|||
|
||||
gsettings_desktop_schemas = callPackage ./core/gsettings-desktop-schemas { };
|
||||
|
||||
gucharmap = callPackage ./core/gucharmap { };
|
||||
|
||||
gvfs = pkgs.gvfs.override { gnome = pkgs.gnome3; };
|
||||
|
||||
eog = callPackage ./core/eog { };
|
||||
|
@ -90,6 +92,8 @@ rec {
|
|||
|
||||
yelp_xsl = callPackage ./core/yelp-xsl { };
|
||||
|
||||
yelp_tools = callPackage ./core/yelp-tools { };
|
||||
|
||||
zenity = callPackage ./core/zenity { };
|
||||
|
||||
|
||||
|
|
|
@ -7880,6 +7880,8 @@ let
|
|||
|
||||
gtimelog = pythonPackages.gtimelog;
|
||||
|
||||
inherit (gnome3) gucharmap;
|
||||
|
||||
guitarix = callPackage ../applications/audio/guitarix {
|
||||
fftw = fftwSinglePrec;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue