mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
7e5de2061b
svn path=/nixpkgs/trunk/; revision=3149
24 lines
506 B
Nix
24 lines
506 B
Nix
{ sslSupport ? true
|
|
, stdenv, fetchurl, pkgconfig, gtk, glib, openssl ? null, gdkpixbuf ? null
|
|
}:
|
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sylpheed-1.9.11";
|
|
|
|
src = fetchurl {
|
|
url = http://sylpheed.good-day.net/sylpheed/v1.9/sylpheed-1.9.11.tar.bz2;
|
|
md5 = "70191d0d98ea576b0d2e175055ced4c9";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig glib gtk
|
|
(if sslSupport then openssl else null)
|
|
];
|
|
|
|
configureFlags = [
|
|
(if sslSupport then "--enable-ssl" else null)
|
|
];
|
|
}
|