Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
991 B
Nix
48 lines
991 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
intltool,
|
|
openssl,
|
|
expat,
|
|
libgcrypt,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ggz-base-libs";
|
|
version = "0.99.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://mirrors.ibiblio.org/pub/mirrors/ggzgamingzone/ggz/snapshots/ggz-base-libs-snapshot-${version}.tar.gz";
|
|
sha256 = "1cw1vg0fbj36zyggnzidx9cbjwfc1yr4zqmsipxnvns7xa2awbdk";
|
|
};
|
|
|
|
nativeBuildInputs = [ intltool ];
|
|
buildInputs = [
|
|
openssl
|
|
expat
|
|
libgcrypt
|
|
];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace configure \
|
|
--replace "/usr/local/ssl/include" "${openssl.dev}/include" \
|
|
--replace "/usr/local/ssl/lib" "${lib.getLib openssl}/lib"
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-tls"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "GGZ Gaming zone libraries";
|
|
mainProgram = "ggz-config";
|
|
maintainers = with maintainers; [
|
|
raskin
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
downloadPage = "http://www.ggzgamingzone.org/releases/";
|
|
};
|
|
}
|