4b80c924ca
svn path=/nixpkgs/trunk/; revision=17640
15 lines
322 B
Nix
15 lines
322 B
Nix
{stdenv, fetchurl, neon, openssl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sitecopy-0.16.6";
|
|
|
|
src = fetchurl {
|
|
url = http://www.manyfish.co.uk/sitecopy/sitecopy-0.16.6.tar.gz;
|
|
sha256 = "1bsqfhfq83g1qambqf8i1ivvggz5d2byg94hmrpxqkg50yhdsvz0";
|
|
};
|
|
|
|
buildInputs = [openssl];
|
|
|
|
configureFlags= "--with-ssl=openssl";
|
|
}
|