nixpkgs/pkgs/development/libraries/loudmouth/default.nix
Sander van der Burg 2b0544f223 - 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
2009-09-10 21:08:46 +00:00

17 lines
411 B
Nix

{stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib}:
stdenv.mkDerivation {
name = "loudmouth-1.4.3";
src = fetchurl {
url = http://ftp.gnome.org/pub/GNOME/sources/loudmouth/1.4/loudmouth-1.4.3.tar.bz2;
md5 = "55339ca42494690c3942ee1465a96937";
};
configureFlags = "--with-ssl=openssl";
propagatedBuildInputs = [openssl libidn glib zlib];
buildInputs = [pkgconfig];
}