summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/blueman
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 15:25:19 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 15:25:19 +0200
commit0fd688a1a5d51030c913e814b07ad69009e9bfa6 (patch)
tree6956593d052ade51aaceb2904778c8e7f2066867 /pkgs/tools/bluetooth/blueman
parenta6c7132abc972b91826db1cf6f820d6b1b454ba0 (diff)
downloadnixpkgs-0fd688a1a5d51030c913e814b07ad69009e9bfa6.tar
nixpkgs-0fd688a1a5d51030c913e814b07ad69009e9bfa6.tar.gz
nixpkgs-0fd688a1a5d51030c913e814b07ad69009e9bfa6.tar.bz2
nixpkgs-0fd688a1a5d51030c913e814b07ad69009e9bfa6.tar.lz
nixpkgs-0fd688a1a5d51030c913e814b07ad69009e9bfa6.tar.xz
nixpkgs-0fd688a1a5d51030c913e814b07ad69009e9bfa6.tar.zst
nixpkgs-0fd688a1a5d51030c913e814b07ad69009e9bfa6.zip
blueman: use python3Packages
Diffstat (limited to 'pkgs/tools/bluetooth/blueman')
-rw-r--r--pkgs/tools/bluetooth/blueman/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/bluetooth/blueman/default.nix b/pkgs/tools/bluetooth/blueman/default.nix
index da562fde160..29c9a21465c 100644
--- a/pkgs/tools/bluetooth/blueman/default.nix
+++ b/pkgs/tools/bluetooth/blueman/default.nix
@@ -1,9 +1,10 @@
-{ stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, gtk3
+{ stdenv, lib, fetchurl, intltool, pkgconfig, python3Packages, bluez, gtk3
 , obex_data_server, xdg_utils, libnotify, dnsmasq, dhcp
 , hicolor-icon-theme, librsvg, wrapGAppsHook, gobjectIntrospection
 , withPulseAudio ? true, libpulseaudio }:
 
 let
+  pythonPackages = python3Packages;
   binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ];
 
 in stdenv.mkDerivation rec {