evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / gw / gweled / package.nix
blob5263d9adab9973aa7819c04fbd9b4ae5a69528b2
2   lib,
3   stdenv,
4   fetchgit,
5   meson,
6   ninja,
7   pkg-config,
8   wrapGAppsHook3,
9   desktop-file-utils,
10   clutter,
11   clutter-gtk,
12   gsound,
13   libgnome-games-support,
16 stdenv.mkDerivation (finalAttrs: {
17   pname = "gweled";
18   version = "1.0-beta1";
20   src = fetchgit {
21     url = "https://git.launchpad.net/gweled";
22     rev = "refs/tags/${finalAttrs.version}";
23     hash = "sha256-cm1z6l2tfYBFVFcvsnQ6cI3pQDnJMzn6SUC20gnBF5w=";
24   };
26   nativeBuildInputs = [
27     meson
28     ninja
29     pkg-config
30     wrapGAppsHook3
31     desktop-file-utils
32   ];
34   buildInputs = [
35     clutter
36     clutter-gtk
37     gsound
38     libgnome-games-support
39   ];
41   configureFlags = [ "--disable-setgid" ];
43   meta = {
44     description = "Puzzle game similar to Bejeweled or Diamond Mine";
45     mainProgram = "gweled";
46     homepage = "https://gweled.org";
47     license = lib.licenses.gpl2Plus;
48     platforms = lib.platforms.linux;
49     maintainers = with lib.maintainers; [ aleksana ];
50   };