about summary refs log tree commit diff
path: root/pkgs/development/libraries/ggz_base_libs/default.nix
blob: 631160487d8ed7ff5fc53d2fa8427b55e8753207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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 ];

  configureFlags = [
    "--with-ssl-dir=${openssl.dev}/"
    "--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/";
  };
}