nixpkgs/pkgs/development/libraries/ggz_base_libs/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

37 lines
966 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/";
};
}