gnome-bluetooth: fix icons on non-nixos
This commit is contained in:
parent
481a764f8f
commit
ccb32c96c4
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, gnome3, pkgconfig, intltool, glib
|
||||
, udev, itstool, libxml2 }:
|
||||
, udev, itstool, libxml2, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-bluetooth-${gnome3.version}.1";
|
||||
|
@ -9,8 +9,13 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "12z0792j5ln238ajhgqx5jrm34wz2yqbbskhlp23p9c0cwnj1srz";
|
||||
};
|
||||
|
||||
buildInputs = with gnome3; [ pkgconfig intltool glib gtk3 udev libxml2
|
||||
gsettings_desktop_schemas itstool ];
|
||||
buildInputs = with gnome3; [ pkgconfig intltool glib gtk3 udev libxml2 gnome3.defaultIconTheme
|
||||
makeWrapper gsettings_desktop_schemas itstool ];
|
||||
|
||||
preFixup = ''
|
||||
wrapProgram "$out/bin/bluetooth-sendto" \
|
||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://help.gnome.org/users/gnome-bluetooth/stable/index.html.en;
|
||||
|
|
Loading…
Reference in New Issue