summary refs log blame commit diff
path: root/pkgs/games/gweled/default.nix
blob: b15bb43a45176e6662ce9c87f1ddc546305a09e4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                 
                                                 













                                                                    
                                                                           




                                                                               
                    



                                         
                      

    
{ lib, stdenv, fetchbzr, intltool
, gtk2, wrapGAppsHook, autoreconfHook, pkg-config
, libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }:

stdenv.mkDerivation rec {
  pname = "gweled";
  version = "unstable-2018-02-15";

  src = fetchbzr {
    url = "lp:gweled";
    rev = "94";
    sha256 = "01c38y4df5a06wqbsmsn8ysxx7hav9yvw6zdwbc9m5m55z7vmdb8";
  };

  doCheck = false;

  nativeBuildInputs = [ wrapGAppsHook intltool autoreconfHook pkg-config ];

  buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ];

  configureFlags = [ "--disable-setgid" ];

  meta = with lib; {
    description = "Bejeweled clone game";
    homepage = "https://gweled.org";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = [ ];
  };
}