2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
2017-12-03 23:03:20 +00:00
|
|
|
, intltool, gobjectIntrospection, gjs, gdk_pixbuf, librsvg }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
2017-12-03 23:03:20 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
|
2016-09-18 20:35:23 +01:00
|
|
|
buildInputs = [
|
2017-12-03 23:03:20 +00:00
|
|
|
gtk3 gjs gdk_pixbuf gobjectIntrospection
|
2018-02-25 02:23:58 +00:00
|
|
|
librsvg gnome3.gsettings-desktop-schemas gnome3.defaultIconTheme
|
2016-09-18 20:35:23 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|