mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
0734f54ef2
found with nixpkgs-lint
36 lines
934 B
Nix
36 lines
934 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";
|
|
maintainers = with maintainers;
|
|
[
|
|
raskin
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
downloadPage = "http://www.ggzgamingzone.org/releases/";
|
|
};
|
|
}
|