blueman: add librsvg

This commit is contained in:
Nikolay Amiantov 2017-02-05 19:32:36 +03:00
parent 073ca2b34f
commit 5125ecb2c1

View File

@ -1,6 +1,7 @@
{ stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3 { stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3
, obex_data_server, xdg_utils, libnotify, dconf, gsettings_desktop_schemas, dnsmasq, dhcp , obex_data_server, xdg_utils, libnotify, dconf, gsettings_desktop_schemas, dnsmasq, dhcp
, hicolor_icon_theme , withPulseAudio ? true, libpulseaudio }: , hicolor_icon_theme, librsvg
, withPulseAudio ? true, libpulseaudio }:
let let
binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ]; binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ];
@ -16,7 +17,7 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ]; nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ];
buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf librsvg
gsettings_desktop_schemas hicolor_icon_theme ] gsettings_desktop_schemas hicolor_icon_theme ]
++ pythonPath ++ pythonPath
++ lib.optional withPulseAudio libpulseaudio; ++ lib.optional withPulseAudio libpulseaudio;