3
0
Fork 0
forked from mirrors/nixpkgs

Fixes for torprpl, until making it work.

This commit is contained in:
Lluís Batlle i Rossell 2013-10-12 18:53:59 +02:00
parent 3ecba5afd1
commit 5355ab63b9

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libtoxcore, pidgin, autoconf, automake, libtool } :
{ stdenv, fetchurl, libtoxcore, pidgin, autoconf, automake, libtool, libsodium } :
let
version = "17a3fd9199";
@ -13,9 +13,13 @@ stdenv.mkDerivation rec {
sha256 = "0sz5wkyfwmhaj652xpsxq4p252cmmfa1vy6mp3jfyn145c758v9n";
};
NIX_LDFLAGS = "-lssp -lsodium";
preConfigure = "autoreconf -vfi";
buildInputs = [ libtoxcore pidgin autoconf automake libtool];
postInstall = "mv $out/lib/purple-2 $out/lib/pidgin";
buildInputs = [ libtoxcore pidgin autoconf automake libtool libsodium ];
meta = {
homepage = http://tox.dhs.org/;