Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gamehub: init at 0.16.3-2 #158044

Merged
merged 2 commits into from
Jun 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
67 changes: 67 additions & 0 deletions pkgs/games/gamehub/default.nix
Original file line number Diff line number Diff line change
@@ -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
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved
ninja
pkg-config
vala
wrapGAppsHook
];

buildInputs = [
glib
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved
glib-networking
gtk3
json-glib
libgee
libmanette
libsoup
libXtst
sqlite
webkitgtk
];

meta = with lib; {
homepage = "https://tkashkin.github.io/projects/gamehub";
description = "Unified library for all your games";
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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21748,6 +21748,8 @@ with pkgs;

fusionInventory = callPackage ../servers/monitoring/fusion-inventory { };

gamehub = callPackage ../games/gamehub { };

gatling = callPackage ../servers/http/gatling { };

gitlab-pages = callPackage ../servers/http/gitlab-pages { };
Expand Down