From a32e85984e023f6a08e7584256d94b445c5f634d Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Thu, 13 Aug 2015 20:28:14 +0200 Subject: [PATCH] gnome-characters: init at 3.16.2 --- .../3.16/apps/gnome-characters/default.nix | 24 +++++++++++++++++++ pkgs/desktops/gnome-3/3.16/default.nix | 4 +++- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 pkgs/desktops/gnome-3/3.16/apps/gnome-characters/default.nix diff --git a/pkgs/desktops/gnome-3/3.16/apps/gnome-characters/default.nix b/pkgs/desktops/gnome-3/3.16/apps/gnome-characters/default.nix new file mode 100644 index 000000000000..0c18f926e6d1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.16/apps/gnome-characters/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, intltool, gjs, gdk_pixbuf, librsvg }: + +stdenv.mkDerivation rec { + name = "gnome-characters-${gnome3.version}.2"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-characters/${gnome3.version}/${name}.tar.xz"; + sha256 = "1gs5k32lmjpi4scb2i7pfnbsy8pl0gb9w1aypyy83hy6ydinaqc4"; + }; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool gjs gdk_pixbuf + librsvg gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Design/Apps/CharacterMap; + description = "Simple utility application to find and insert unusual characters"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.16/default.nix b/pkgs/desktops/gnome-3/3.16/default.nix index 947b661f270b..3f554dbac1cc 100644 --- a/pkgs/desktops/gnome-3/3.16/default.nix +++ b/pkgs/desktops/gnome-3/3.16/default.nix @@ -31,7 +31,7 @@ let gnome_terminal gnome-user-docs bijiben evolution file-roller gedit gnome-clocks gnome-music gnome-tweak-tool gnome-photos nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs - gnome-maps + gnome-maps gnome-characters ]; gamesPackages = with gnome3; [ swell-foop lightsoff iagno @@ -269,6 +269,8 @@ let spice_gtk = pkgs.spice_gtk.override { enableGTK3 = true; }; }; + gnome-characters = callPackage ./apps/gnome-characters { }; + gnome-clocks = callPackage ./apps/gnome-clocks { }; gnome-documents = callPackage ./apps/gnome-documents { };