summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/thunderbird
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-11-18 14:16:28 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2016-11-24 22:28:04 +0100
commit8fb430ca86926d80caef0339a034c817c1e10854 (patch)
treebbcd36abdb7d731fae355ea42cc1fac57ae1a64a /pkgs/applications/networking/mailreaders/thunderbird
parent2887a633f7dfa18af57ea05f96b0eee4deb5c0f6 (diff)
downloadnixlib-8fb430ca86926d80caef0339a034c817c1e10854.tar
nixlib-8fb430ca86926d80caef0339a034c817c1e10854.tar.gz
nixlib-8fb430ca86926d80caef0339a034c817c1e10854.tar.bz2
nixlib-8fb430ca86926d80caef0339a034c817c1e10854.tar.lz
nixlib-8fb430ca86926d80caef0339a034c817c1e10854.tar.xz
nixlib-8fb430ca86926d80caef0339a034c817c1e10854.tar.zst
nixlib-8fb430ca86926d80caef0339a034c817c1e10854.zip
thunderbird: use python2
and remove pysqlite since its part of the standard library.
Diffstat (limited to 'pkgs/applications/networking/mailreaders/thunderbird')
-rw-r--r--pkgs/applications/networking/mailreaders/thunderbird/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index 8e2e5a1be448..9e2baf94527f 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchurl, pkgconfig, which, m4, gtk2, pango, perl, python, zip, libIDL
+{ stdenv, fetchurl, pkgconfig, which, m4, gtk2, pango, perl, python2, zip, libIDL
 , libjpeg, libpng, zlib, dbus, dbus_glib, bzip2, xorg
 , freetype, fontconfig, file, alsaLib, nspr, nss, libnotify
-, yasm, mesa, sqlite, unzip, makeWrapper, pysqlite
+, yasm, mesa, sqlite, unzip, makeWrapper
 , hunspell, libevent, libstartup_notification, libvpx
 , cairo, gstreamer, gst_plugins_base, icu
 , debugBuild ? false
@@ -26,10 +26,10 @@ stdenv.mkDerivation rec {
 
   buildInputs = # from firefox30Pkgs.xulrunner, without gstreamer and libvpx
     [ pkgconfig which libpng gtk2 perl zip libIDL libjpeg zlib bzip2
-      python dbus dbus_glib pango freetype fontconfig xorg.libXi
+      python2 dbus dbus_glib pango freetype fontconfig xorg.libXi
       xorg.libX11 xorg.libXrender xorg.libXft xorg.libXt file
       alsaLib nspr nss libnotify xorg.pixman yasm mesa
-      xorg.libXScrnSaver xorg.scrnsaverproto pysqlite
+      xorg.libXScrnSaver xorg.scrnsaverproto
       xorg.libXext xorg.xextproto sqlite unzip makeWrapper
       hunspell libevent libstartup_notification cairo icu
     ] ++ [ m4 ];