summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/sylpheed/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-14 12:27:07 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-14 12:27:07 +0000
commit86ca57f4bb6242e40e7716e474f4b904c5737a18 (patch)
tree416e30776efb6fbe3306157023185fc68358fc42 /pkgs/applications/networking/mailreaders/sylpheed/default.nix
parent71739165a87ae79b777cf2a6db8ed4d1f549531f (diff)
* Toss out the old (GTK-1) Sylpheed.
svn path=/nixpkgs/trunk/; revision=4091
Diffstat (limited to 'pkgs/applications/networking/mailreaders/sylpheed/default.nix')
-rw-r--r--pkgs/applications/networking/mailreaders/sylpheed/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
deleted file mode 100644
index 869c5dd4caacc..0000000000000
--- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ sslSupport ? true
-, imageSupport ? true
-, stdenv, fetchurl, gtk, openssl ? null, gdkpixbuf ? null
-}:
-
-assert gtk != null;
-assert sslSupport -> openssl != null;
-assert imageSupport -> gdkpixbuf != null;
-
-stdenv.mkDerivation {
-  name = "sylpheed-1.0.4";
-
-  builder = ./builder.sh;
-  src = fetchurl {
-    url = http://sylpheed.good-day.net/sylpheed/v1.0/sylpheed-1.0.4.tar.bz2;
-    md5 = "e47b275c281335d09201503af2115eaa";
-  };
-
-  inherit sslSupport imageSupport;
-
-  inherit gtk;
-  openssl = if sslSupport then openssl else null;
-  gdkpixbuf = if imageSupport then gdkpixbuf else null;
-}