mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
35 lines
925 B
Nix
35 lines
925 B
Nix
{ lib, stdenv, fetchbzr, gettext
|
|
, gtk2, wrapGAppsHook, autoreconfHook, pkg-config
|
|
, libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gweled";
|
|
version = "unstable-2021-02-11";
|
|
|
|
src = fetchbzr {
|
|
url = "lp:gweled";
|
|
rev = "108";
|
|
sha256 = "sha256-rM4dgbYfSrVqZwi+xzKuEtmtjK3HVvqeutmni1vleLo=";
|
|
};
|
|
|
|
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 ];
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|