jack2Full: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-17 14:16:14 +02:00
parent be343cbce4
commit e7834d4ed9
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, pythonPackages, makeWrapper
{ stdenv, fetchFromGitHub, pkgconfig, python2Packages, makeWrapper
, bash, libsamplerate, libsndfile, readline, gcc
# Optional Dependencies
@ -11,7 +11,7 @@
with stdenv.lib;
let
inherit (pythonPackages) python dbus-python;
inherit (python2Packages) python dbus-python;
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
libOnly = prefix == "lib";

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, pythonPackages, makeWrapper
{ stdenv, fetchFromGitHub, pkgconfig, python2Packages, makeWrapper
, bash, libsamplerate, libsndfile, readline
# Optional Dependencies
@ -11,7 +11,7 @@
with stdenv.lib;
let
inherit (pythonPackages) python dbus-python;
inherit (python2Packages) python dbus-python;
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
libOnly = prefix == "lib";