3
0
Fork 0
forked from mirrors/nixpkgs

Temporarily (?) reverting Thunderbird update because updated version failed to build for ununderstandable reasons

svn path=/nixpkgs/trunk/; revision=17061
This commit is contained in:
Michael Raskin 2009-09-12 05:36:07 +00:00
parent 37cbc33a6e
commit 7c38144378
2 changed files with 4 additions and 8 deletions

View file

@ -1,7 +1,5 @@
source $stdenv/setup source $stdenv/setup
export NIX_LDFLAGS="$NIX_LDFLAGS -lsqlite3"
postInstall() { postInstall() {
# Strip some more stuff # Strip some more stuff

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL, libXi { stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL, libXi
, libjpeg, libpng, zlib, cairo, sqlite , libjpeg, libpng, zlib, cairo
, # If you want the resulting program to call itself "Thunderbird" , # If you want the resulting program to call itself "Thunderbird"
# instead of "Mail", enable this option. However, those # instead of "Mail", enable this option. However, those
@ -11,18 +11,17 @@
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "thunderbird-2.0.0.23"; name = "thunderbird-2.0.0.21";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.23/source/thunderbird-2.0.0.23-source.tar.bz2; url = ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.21/source/thunderbird-2.0.0.21-source.tar.bz2;
sha1 = "a237bfb92ec9c4b2bed7ea744e95d01ec43e07f1"; sha1 = "8bb2f7ce60635f6082c3c4542fff10c4b7445dc0";
}; };
buildInputs = [ buildInputs = [
pkgconfig gtk perl zip libIDL libXi libjpeg libpng zlib cairo pkgconfig gtk perl zip libIDL libXi libjpeg libpng zlib cairo
sqlite
]; ];
patches = [ patches = [
@ -52,6 +51,5 @@ stdenv.mkDerivation {
meta = { meta = {
description = "Mozilla Thunderbird, a full-featured email client"; description = "Mozilla Thunderbird, a full-featured email client";
maintainers = [stdenv.lib.maintainers.eelco];
}; };
} }