nixpkgs/pkgs/games/gweled/default.nix

35 lines
925 B
Nix
Raw Normal View History

{ lib, stdenv, fetchbzr, gettext
2021-01-17 02:04:36 +00:00
, gtk2, wrapGAppsHook, autoreconfHook, pkg-config
2019-04-30 17:34:45 +00:00
, libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }:
stdenv.mkDerivation rec {
pname = "gweled";
version = "unstable-2021-02-11";
2019-04-30 17:34:45 +00:00
src = fetchbzr {
url = "lp:gweled";
rev = "108";
sha256 = "sha256-rM4dgbYfSrVqZwi+xzKuEtmtjK3HVvqeutmni1vleLo=";
2019-04-30 17:34:45 +00:00
};
doCheck = false;
postPatch = ''
substituteInPlace configure.ac --replace "AM_GNU_GETTEXT_VERSION([0.19.8])" "AM_GNU_GETTEXT_VERSION([${gettext.version}])"
'';
nativeBuildInputs = [ wrapGAppsHook gettext autoreconfHook pkg-config ];
2019-04-30 17:34:45 +00:00
buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ];
configureFlags = [ "--disable-setgid" ];
meta = with lib; {
2019-04-30 17:34:45 +00:00
description = "Bejeweled clone game";
homepage = "https://gweled.org";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ ];
2019-04-30 17:34:45 +00:00
};
}