summary refs log tree commit diff
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-01-12 20:04:08 +0100
committerlassulus <lassulus@lassul.us>2022-01-12 20:04:08 +0100
commitaf6c20ea05afbbb63135d3699fe52118dbcf635a (patch)
treeb96906d00a9965c053635fa645ea6804abed18af
parent21dc827a948da8302b5b08cfdc81d58053a8e318 (diff)
downloadnixpkgs-af6c20ea05afbbb63135d3699fe52118dbcf635a.tar
nixpkgs-af6c20ea05afbbb63135d3699fe52118dbcf635a.tar.gz
nixpkgs-af6c20ea05afbbb63135d3699fe52118dbcf635a.tar.bz2
nixpkgs-af6c20ea05afbbb63135d3699fe52118dbcf635a.tar.lz
nixpkgs-af6c20ea05afbbb63135d3699fe52118dbcf635a.tar.xz
nixpkgs-af6c20ea05afbbb63135d3699fe52118dbcf635a.tar.zst
nixpkgs-af6c20ea05afbbb63135d3699fe52118dbcf635a.zip
bitlbee: python2 -> python3
-rw-r--r--pkgs/applications/networking/instant-messengers/bitlbee/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix
index 4ecc449fe85..de8c4dc1026 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, python2
+{ lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkg-config, check, libotr, python3
 , enableLibPurple ? false, pidgin ? null
 , enablePam ? false, pam ? null
 }:
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkg-config ] ++ optional doCheck check;
 
-  buildInputs = [ gnutls libotr python2 ]
+  buildInputs = [ gnutls libotr python3 ]
     ++ optional enableLibPurple pidgin
     ++ optional enablePam pam;
 
@@ -63,7 +63,7 @@ stdenv.mkDerivation rec {
     homepage = "https://www.bitlbee.org/";
     license = licenses.gpl2Plus;
 
-    maintainers = with maintainers; [ pSub ];
+    maintainers = with maintainers; [ lassulus pSub ];
     platforms = platforms.gnu ++ platforms.linux;  # arbitrary choice
   };
 }