summary refs log blame commit diff
path: root/pkgs/development/libraries/ggz_base_libs/default.nix
blob: 6003c5ea33ea34e6b9cf20828a1f1cdb2cb59c20 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                          
 



                                           
 



                                                                                              
 
                                                     
 





                                                                   
                    

                

                           
                                              
                                   


            


                                                            
    
 
{ 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/";
  };
}