summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 10:46:59 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 10:46:59 +0100
commit8e866ceabcb300d683178cb41c9fc4d31f4e0454 (patch)
treeb6d96eabae3e5d5c41acb2c20d013839f3ad35e1
parent5a5cb718a590fddd8d982bef9d9c41f9187a4f68 (diff)
downloadnixpkgs-8e866ceabcb300d683178cb41c9fc4d31f4e0454.tar
nixpkgs-8e866ceabcb300d683178cb41c9fc4d31f4e0454.tar.gz
nixpkgs-8e866ceabcb300d683178cb41c9fc4d31f4e0454.tar.bz2
nixpkgs-8e866ceabcb300d683178cb41c9fc4d31f4e0454.tar.lz
nixpkgs-8e866ceabcb300d683178cb41c9fc4d31f4e0454.tar.xz
nixpkgs-8e866ceabcb300d683178cb41c9fc4d31f4e0454.tar.zst
nixpkgs-8e866ceabcb300d683178cb41c9fc4d31f4e0454.zip
bitlbee: use python2
-rw-r--r--pkgs/applications/networking/instant-messengers/bitlbee/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
index 1a83a04a1fa..c5a718c3a70 100644
--- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
+++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
@@ -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
 , enablePam ? false, pam ? null
 }:
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkg-config ] ++ optional doCheck check;
 
-  buildInputs = [ gnutls libotr python ]
+  buildInputs = [ gnutls libotr python2 ]
     ++ optional enableLibPurple pidgin
     ++ optional enablePam pam;