- Loudmouth uses OpenSSL now instead of GnuTLS, because I could not compile it with GnuTLS

- Upgraded KOffice to 2.0.2
- Upgraded KTorrent to 3.2.3
- Upgraded Amarok to 2.1.1


svn path=/nixpkgs/trunk/; revision=17038
This commit is contained in:
Sander van der Burg
2009-09-10 21:08:46 +00:00
parent f0bc865339
commit 2b0544f223
6 changed files with 39 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, gnutls, libidn, glib, pkgconfig, zlib}:
{stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib}:
stdenv.mkDerivation {
name = "loudmouth-1.4.3";
@@ -8,7 +8,9 @@ stdenv.mkDerivation {
md5 = "55339ca42494690c3942ee1465a96937";
};
propagatedBuildInputs = [gnutls libidn glib zlib];
configureFlags = "--with-ssl=openssl";
propagatedBuildInputs = [openssl libidn glib zlib];
buildInputs = [pkgconfig];
}