Skip to content

Instantly share code, notes, and snippets.

@telent
Created August 11, 2015 21:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save telent/04b9724f81c993a7cc15 to your computer and use it in GitHub Desktop.
Save telent/04b9724f81c993a7cc15 to your computer and use it in GitHub Desktop.
{stdenv
, fetchFromGitHub
, autoconf
, automake
, libtool
, c-ares
, popt
, openssl
, pkgconfig }:
stdenv.mkDerivation {
name = "resiprocate-1.10.0-alpha2";
src = fetchFromGitHub {
owner = "resiprocate";
repo = "resiprocate";
rev = "b58d4105c1be4a28d748b3a54ff774d32433dabb";
sha256 = "1qgdjich1pwhc0abx4fy7wc2xk1r8hj3n6nya243labr2anfx777";
};
configureFlags = "--with-ssl --with-repro --with-apps --enable-repro-plugins --enable-dtls --enable-ipv6 --with-c-ares";
preConfigure = ''
mkdir -p build-aux
cp ${automake}/share/automake-1.15/{missing,install-sh} ./build-aux
autoreconf -i
'';
buildInputs = [popt autoconf automake libtool pkgconfig c-ares openssl c-ares];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment