36 lines
923 B
Nix
36 lines
923 B
Nix
{ stdenv, fetchurl, intltool, openssl, expat, libgcrypt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.99.5";
|
|
baseName = "ggz-base-libs";
|
|
name = "${baseName}-snapshot-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://mirrors.ibiblio.org/pub/mirrors/ggzgamingzone/ggz/snapshots/${name}.tar.gz";
|
|
sha256 = "1cw1vg0fbj36zyggnzidx9cbjwfc1yr4zqmsipxnvns7xa2awbdk";
|
|
};
|
|
|
|
buildInputs = [ intltool openssl expat libgcrypt ];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace configure \
|
|
--replace "/usr/local/ssl/include" "${openssl.dev}/include" \
|
|
--replace "/usr/local/ssl/lib" "${openssl.out}/lib"
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-tls"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GGZ Gaming zone libraries";
|
|
maintainers = with maintainers;
|
|
[
|
|
raskin
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
downloadPage = "http://www.ggzgamingzone.org/releases/";
|
|
};
|
|
}
|