nixpkgs/pkgs/applications/networking/mailreaders/sylpheed/default.nix
Armijn Hemel 3f06850f45 update.
This package is more or less orphaned, it seems, maybe it would be better to delete it from Nixpkgs altogether

svn path=/nixpkgs/trunk/; revision=10017
2007-12-31 20:32:00 +00:00

30 lines
610 B
Nix

{ sslSupport ? true
, gpgSupport ? false
, stdenv, fetchurl, pkgconfig, gtk
, openssl ? null
, gpgme ? null
}:
assert sslSupport -> openssl != null;
assert gpgSupport -> gpgme != null;
stdenv.mkDerivation {
name = "sylpheed-2.4.8";
src = fetchurl {
url = http://sylpheed.sraoss.jp/sylpheed/v2.4/sylpheed-2.4.8.tar.bz2;
sha256 = "0r4bfkyz39pj02rzn38ss10dhhhv93z1azlbbwdgbkjii3k760fc";
};
buildInputs = [
pkgconfig gtk
(if sslSupport then openssl else null)
(if gpgSupport then gpgme else null)
];
configureFlags = [
(if sslSupport then "--enable-ssl" else null)
];
}