bitlbee: use python2

This commit is contained in:
Frederik Rietdijk 2021-03-25 10:46:59 +01:00
parent 5a5cb718a5
commit 8e866ceabc

View file

@ -1,4 +1,4 @@
{ lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkg-config, check, libotr, python { lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkg-config, check, libotr, python2
, enableLibPurple ? false, pidgin ? null , enableLibPurple ? false, pidgin ? null
, enablePam ? false, pam ? null , enablePam ? false, pam ? null
}: }:
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ] ++ optional doCheck check; nativeBuildInputs = [ pkg-config ] ++ optional doCheck check;
buildInputs = [ gnutls libotr python ] buildInputs = [ gnutls libotr python2 ]
++ optional enableLibPurple pidgin ++ optional enableLibPurple pidgin
++ optional enablePam pam; ++ optional enablePam pam;