forked from mirrors/nixpkgs
thunderbird 2.0.0.12
svn path=/nixpkgs/trunk/; revision=10879
This commit is contained in:
parent
1c65ea4e20
commit
65e80ffb4f
|
@ -6,6 +6,11 @@ postInstall() {
|
|||
# Strip some more stuff
|
||||
strip -S $out/lib/*/* || true
|
||||
|
||||
# Fix some references to /bin paths in the Thunderbird shell script.
|
||||
substituteInPlace $out/bin/thunderbird \
|
||||
--replace /bin/pwd "$(type -tP pwd)" \
|
||||
--replace /bin/ls "$(type -tP ls)"
|
||||
|
||||
# This fixes starting Thunderbird when there already is a running
|
||||
# instance. The `thunderbird' wrapper script actually expects to
|
||||
# be in the same directory as `run-mozilla.sh', apparently.
|
||||
|
|
|
@ -11,12 +11,12 @@
|
|||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "thunderbird-2.0.0.9";
|
||||
name = "thunderbird-2.0.0.12";
|
||||
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.9/source/thunderbird-2.0.0.9-source.tar.bz2;
|
||||
sha1 = "fede9db98f25adb978b84129a6d15a4dbe6bbb3e";
|
||||
url = http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/2.0.0.12/source/thunderbird-2.0.0.12-source.tar.bz2;
|
||||
sha1 = "36ea64353d32a9f138ef658250cfdcf8f9e862f2";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
|
Loading…
Reference in a new issue