8ea42e7489
It was failing with: LINK Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot0x /nix/store/mgdjnsrkqgmxqjaqaxgqyqm7fwyi96fk-binutils-2.31.1/bin/ld: cannot find -lssl /nix/store/mgdjnsrkqgmxqjaqaxgqyqm7fwyi96fk-binutils-2.31.1/bin/ld: cannot find -lcrypto collect2: error: ld returned 1 exit status
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ stdenv, python, fetchurl, openssl, boost, scons }:
|
|
stdenv.mkDerivation rec {
|
|
name = "swiften-${version}";
|
|
version = "4.0.2";
|
|
|
|
nativeBuildInputs = [ scons];
|
|
buildInputs = [ python ];
|
|
propagatedBuildInputs = [ openssl boost ];
|
|
|
|
src = fetchurl {
|
|
url = "https://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz";
|
|
sha256 = "0w0aiszjd58ynxpacwcgf052zpmbpcym4dhci64vbfgch6wryz0w";
|
|
};
|
|
|
|
patches = [ ./scons.patch ];
|
|
|
|
sconsFlags = [
|
|
"openssl=${openssl.dev}"
|
|
"boost_includedir=${boost.dev}/include"
|
|
"boost_libdir=${boost.out}/lib"
|
|
"boost_bundled_enable=false"
|
|
];
|
|
preInstall = ''
|
|
installTargets="$out"
|
|
installFlags+=" SWIFT_INSTALLDIR=$out"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An XMPP library for C++, used by the Swift client";
|
|
homepage = http://swift.im/swiften.html;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.twey ];
|
|
};
|
|
}
|