Skip to content

Commit

Permalink
Merge pull request #154795 from Lassulus/bitlbee
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Jan 12, 2022
2 parents 82727b3 + af6c20e commit 637239b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -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
}:
Expand All @@ -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;

Expand Down Expand Up @@ -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
};
}

0 comments on commit 637239b

Please sign in to comment.