From 86ca57f4bb6242e40e7716e474f4b904c5737a18 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 14 Oct 2005 12:27:07 +0000 Subject: [PATCH] * Toss out the old (GTK-1) Sylpheed. svn path=/nixpkgs/trunk/; revision=4091 --- .../mailreaders/sylpheed/builder.sh | 14 ----------- .../mailreaders/sylpheed/default.nix | 24 ------------------- 2 files changed, 38 deletions(-) delete mode 100644 pkgs/applications/networking/mailreaders/sylpheed/builder.sh delete mode 100644 pkgs/applications/networking/mailreaders/sylpheed/default.nix diff --git a/pkgs/applications/networking/mailreaders/sylpheed/builder.sh b/pkgs/applications/networking/mailreaders/sylpheed/builder.sh deleted file mode 100644 index c90f8bae4619..000000000000 --- a/pkgs/applications/networking/mailreaders/sylpheed/builder.sh +++ /dev/null @@ -1,14 +0,0 @@ -buildInputs="$gtk $gdkpixbuf $openssl" -. $stdenv/setup - -if test "$sslSupport" = 1; then - configureFlags="--enable-ssl $configureFlags" -fi - -if test "$imageSupport" = 1; then - configureFlags="--enable-gdk-pixbuf $configureFlags" -else - configureFlags="--disable-gdk-pixbuf --disable-imlibtest $configureFlags" -fi - -genericBuild diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix deleted file mode 100644 index 869c5dd4caac..000000000000 --- 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; -}