2021-01-11 10:54:33 +03:00
|
|
|
{ lib, stdenv, fetchbzr, intltool
|
2021-01-17 05:04:36 +03:00
|
|
|
, gtk2, wrapGAppsHook, autoreconfHook, pkg-config
|
2019-04-30 20:34:45 +03:00
|
|
|
, 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;
|
|
|
|
|
2021-01-17 05:04:36 +03:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook intltool autoreconfHook pkg-config ];
|
2019-04-30 20:34:45 +03:00
|
|
|
|
|
|
|
buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ];
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-setgid" ];
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2019-04-30 20:34:45 +03:00
|
|
|
description = "Bejeweled clone game";
|
|
|
|
homepage = "https://gweled.org";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2020-11-17 19:50:53 +03:00
|
|
|
maintainers = [ ];
|
2019-04-30 20:34:45 +03:00
|
|
|
};
|
|
|
|
}
|