mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
808d6aaed1
cartridges: wrap gnome search provider
74 lines
1.6 KiB
Nix
74 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
appstream,
|
|
blueprint-compiler,
|
|
desktop-file-utils,
|
|
gobject-introspection,
|
|
glib-networking,
|
|
libadwaita,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
wrapGAppsHook4,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "cartridges";
|
|
version = "2.9.3";
|
|
pyproject = false;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kra-mo";
|
|
repo = "cartridges";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-37i8p6KaS/G7ybw850XYaPiG83/Lffn/+21xVk5xva0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
gobject-introspection
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
glib-networking
|
|
libadwaita
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
pillow
|
|
pygobject3
|
|
pyyaml
|
|
requests
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
makeWrapperArgs = [ ''''${gappsWrapperArgs[@]}'' ];
|
|
|
|
postFixup = ''
|
|
wrapPythonProgramsIn $out/libexec $out $pythonPath
|
|
'';
|
|
|
|
meta = {
|
|
description = "GTK4 + Libadwaita game launcher";
|
|
longDescription = ''
|
|
A simple game launcher for all of your games.
|
|
It has support for importing games from Steam, Lutris, Heroic
|
|
and more with no login necessary.
|
|
You can sort and hide games or download cover art from SteamGridDB.
|
|
'';
|
|
homepage = "https://apps.gnome.org/Cartridges/";
|
|
changelog = "https://github.com/kra-mo/cartridges/releases/tag/${src.rev}";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ getchoo ];
|
|
mainProgram = "cartridges";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|