Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 22 lines 595 B view raw
1{ stdenv, fetchurl, cmake, qt4, pkgconfig, gsasl }: 2 3stdenv.mkDerivation rec { 4 name = "libjreen-${version}"; 5 version = "1.2.0"; 6 7 src = fetchurl { 8 url = "https://qutim.org/dwnl/73/${name}.tar.bz2"; 9 sha256 = "14nwwk40xx8w6x7yaysgcr0lgzhs7l064f7ikp32s5y9a8mmp582"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ cmake qt4 gsasl ]; 14 enableParallelBuilding = true; 15 16 meta = { 17 description = "C++ Jabber library using Qt framework"; 18 homepage = https://qutim.org/jreen/; 19 license = stdenv.lib.licenses.gpl2Plus; 20 platforms = stdenv.lib.platforms.unix; 21 }; 22}