Skip to content

Commit

Permalink
Revert "bluez: use python3"
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Aug 5, 2018
1 parent 56ac23a commit e3f9a5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/bluez/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, dbus, glib, alsaLib,
python3, readline, udev, libical,
pythonPackages, readline, udev, libical,
systemd, enableWiimote ? false, enableMidi ? false }:

stdenv.mkDerivation rec {
Expand All @@ -10,12 +10,12 @@ stdenv.mkDerivation rec {
sha256 = "048r91vx9gs5nwwbah2s0xig04nwk14c5s0vb7qmaqdvighsmz2z";
};

pythonPath = with python3.pkgs; [
pythonPath = with pythonPackages; [
dbus-python pygobject2 pygobject3 recursivePthLoader
];

buildInputs = [
dbus glib alsaLib python3 python3.pkgs.wrapPython
dbus glib alsaLib pythonPackages.python pythonPackages.wrapPython
readline udev libical
];

Expand Down
3 changes: 1 addition & 2 deletions pkgs/tools/bluetooth/blueman/default.nix
@@ -1,10 +1,9 @@
{ stdenv, lib, fetchurl, intltool, pkgconfig, python3Packages, bluez, gtk3
{ stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, 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 {
Expand Down

0 comments on commit e3f9a5f

Please sign in to comment.