lol
at 17.09-beta 28 lines 725 B view raw
1{ stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib }: 2 3stdenv.mkDerivation rec { 4 version = "1.5.3"; 5 name = "loudmouth-${version}"; 6 7 src = fetchurl { 8 url = "http://mcabber.com/files/loudmouth/${name}.tar.bz2"; 9 sha256 = "0b6kd5gpndl9nzis3n6hcl0ldz74bnbiypqgqa1vgb0vrcar8cjl"; 10 }; 11 12 patches = [ 13 ]; 14 15 configureFlags = "--with-ssl=openssl"; 16 17 propagatedBuildInputs = [ openssl libidn glib zlib ]; 18 19 buildInputs = [ pkgconfig ]; 20 21 meta = { 22 description = "A lightweight C library for the Jabber protocol"; 23 platforms = stdenv.lib.platforms.linux; 24 downloadPage = "http://mcabber.com/files/loudmouth/"; 25 downloadURLRegexp = "loudmouth-[0-9.]+[.]tar[.]bz2$"; 26 updateWalker = true; 27 }; 28}