41840af689
run autoreconf: buildInputs = [ autoreconfHook ]; is essentially equivalent to buildInputs = [ autoconf automake libtool ]; preConfigure = "autoreconf -i"; svn path=/nixpkgs/branches/x-updates/; revision=34181
17 lines
405 B
Nix
17 lines
405 B
Nix
{ stdenv, fetchurl, neon, zlib, openssl, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sitecopy-0.16.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.manyfish.co.uk/sitecopy/${name}.tar.gz";
|
|
sha256 = "1bsqfhfq83g1qambqf8i1ivvggz5d2byg94hmrpxqkg50yhdsvz0";
|
|
};
|
|
|
|
patches = [ ./neon-29.patch ];
|
|
|
|
buildInputs = [ openssl neon zlib autoreconfHook ];
|
|
|
|
configureFlags= "--with-ssl=openssl";
|
|
}
|