gupnp-tools: add required icons, rename from gupnptools

This commit is contained in:
Tomasz Kontusz
2015-12-19 15:31:41 +01:00
parent f300b2861d
commit 62d2a91b2b
2 changed files with 13 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
{fetchurl, stdenv, gupnp, gssdp, pkgconfig, gtk3, libuuid, intltool, gupnp_av, gnome3, makeWrapper}:
{fetchurl, stdenv, gupnp, gssdp, pkgconfig, gtk3, libuuid, intltool, gupnp_av, gnome3, gnome2, makeWrapper}:
stdenv.mkDerivation rec {
name = "gupnp-tools-${version}";
@@ -9,11 +9,17 @@ stdenv.mkDerivation rec {
sha256 = "160dgh9pmlb85qfavwqz46lqawpshs8514bx2b57f9rbiny8kbij";
};
buildInputs = [gupnp libuuid gssdp pkgconfig gtk3 intltool gupnp_av
gnome3.defaultIconTheme gnome3.gnome_themes_standard makeWrapper];
buildInputs = [gupnp libuuid gssdp pkgconfig gtk3 intltool gupnp_av
gnome2.gnome_icon_theme makeWrapper];
postInstall = ''
wrapProgram "$out/bin/gupnp-av-cp" --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:${gnome3.defaultIconTheme}/share:$out/share"
wrapProgram "$out/bin/gupnp-universal-cp" --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:${gnome3.defaultIconTheme}/share:$out/share"
for program in gupnp-av-cp gupnp-universal-cp; do
wrapProgram "$out/bin/$program" \
--prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:${gnome2.gnome_icon_theme}/share:$out/share"
done
'';
meta = {
platforms = stdenv.lib.platforms.linux;
};
}