thunderbird: 3.1
svn path=/nixpkgs/trunk/; revision=22421
This commit is contained in:
parent
29a38efdc8
commit
9d4a13f798
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gtk, perl, python, zip, libIDL
|
{ stdenv, fetchurl, pkgconfig, gtk, perl, python, zip, libIDL
|
||||||
, dbus_glib, bzip2, alsaLib, nspr
|
, dbus_glib, bzip2, alsaLib, nspr
|
||||||
|
, libnotify, cairo, pixman, fontconfig
|
||||||
|
|
||||||
, # If you want the resulting program to call itself "Thunderbird"
|
, # If you want the resulting program to call itself "Thunderbird"
|
||||||
# instead of "Shredder", enable this option. However, those
|
# instead of "Shredder", enable this option. However, those
|
||||||
@ -10,18 +11,21 @@
|
|||||||
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let version = "3.0.5"; in
|
let version = "3.1"; in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "thunderbird-${version}";
|
name = "thunderbird-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.bz2";
|
url = "http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.bz2";
|
||||||
sha1 = "c51b6c6a9357578beb7440e4d3cf4594a61fd6a7";
|
sha1 = "89e9d8099a5437ce401577fc4d526eb0dd9e51da";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ pkgconfig perl python zip bzip2 gtk dbus_glib alsaLib libIDL nspr ];
|
[ pkgconfig perl python zip bzip2 gtk dbus_glib alsaLib libIDL nspr libnotify
|
||||||
|
libnotify cairo pixman fontconfig ];
|
||||||
|
|
||||||
|
NIX_LDFLAGS = "-lpixman-1";
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
[ "--enable-application=mail"
|
[ "--enable-application=mail"
|
||||||
@ -34,6 +38,7 @@ stdenv.mkDerivation {
|
|||||||
"--with-system-nspr"
|
"--with-system-nspr"
|
||||||
"--enable-system-cairo"
|
"--enable-system-cairo"
|
||||||
"--disable-crashreporter"
|
"--disable-crashreporter"
|
||||||
|
"--disable-necko-wifi"
|
||||||
"--disable-tests"
|
"--disable-tests"
|
||||||
"--enable-static" # required by `make install'
|
"--enable-static" # required by `make install'
|
||||||
]
|
]
|
||||||
|
@ -8747,7 +8747,8 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
thunderbird3 = lowPrio (import ../applications/networking/mailreaders/thunderbird/3.x.nix {
|
thunderbird3 = lowPrio (import ../applications/networking/mailreaders/thunderbird/3.x.nix {
|
||||||
inherit fetchurl stdenv pkgconfig perl python dbus_glib zip bzip2 alsaLib nspr;
|
inherit fetchurl stdenv pkgconfig perl python dbus_glib zip bzip2 alsaLib nspr libnotify cairo fontconfig;
|
||||||
|
inherit (xorg) pixman;
|
||||||
inherit (gtkLibs) gtk;
|
inherit (gtkLibs) gtk;
|
||||||
inherit (gnome) libIDL;
|
inherit (gnome) libIDL;
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user