about summary refs log tree commit diff
path: root/pkgs/games/gamehub/default.nix
diff options
context:
space:
mode:
authorPasquale <p3dimaria@hotmail.it>2020-10-07 15:59:19 +0200
committerpaki23 <pk93@posteo.net>2022-06-18 11:23:08 +0200
commit207a128a69c4d5e6d5e7f60cb4f8b530eacb111b (patch)
tree898140ae525a53e9557b2a241bd396ea02564861 /pkgs/games/gamehub/default.nix
parentcd33581e0a8a5c57cd54f5960f0762aa5fd9e6f8 (diff)
GameHub: init at 0.16.3-2
a
Diffstat (limited to 'pkgs/games/gamehub/default.nix')
-rw-r--r--pkgs/games/gamehub/default.nix67
1 files changed, 67 insertions, 0 deletions
diff --git a/pkgs/games/gamehub/default.nix b/pkgs/games/gamehub/default.nix
new file mode 100644
index 0000000000000..b22446b80abcd
--- /dev/null
+++ b/pkgs/games/gamehub/default.nix
@@ -0,0 +1,67 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, meson
+, ninja
+, vala
+, pkg-config
+, desktop-file-utils
+, glib
+, gtk3
+, glib-networking
+, libgee
+, libsoup
+, json-glib
+, sqlite
+, webkitgtk
+, libmanette
+, libXtst
+, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "GameHub";
+  version = "0.16.3-2";
+
+  src = fetchFromGitHub {
+    owner = "tkashkin";
+    repo = pname;
+    rev = "${version}-master";
+    hash = "sha256-dBGzXwDO9BvnEIcdfqlGnMzUdBqaVA96Ds0fY6eukes=";
+  };
+
+  nativeBuildInputs = [
+    desktop-file-utils
+    meson
+    ninja
+    pkg-config
+    vala
+    wrapGAppsHook
+  ];
+
+  buildInputs = [
+    glib
+    glib-networking
+    gtk3
+    json-glib
+    libgee
+    libmanette
+    libsoup
+    libXtst
+    sqlite
+    webkitgtk
+  ];
+
+  meta = with lib; {
+    homepage = "https://tkashkin.github.io/projects/gamehub";
+    description = "All your games in one place";
+    longDescription = ''
+      GameHub is a unified library for all your games. It allows you to store
+      your games from different platforms into one program to make it easier
+      for you to manage your games.
+    '';
+    maintainers = with maintainers; [ pasqui23 ];
+    license = with licenses; [ gpl3Only ];
+    platforms = platforms.linux;
+  };
+}