Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.0 KiB
Nix
57 lines
1.0 KiB
Nix
{
|
|
blueprint-compiler,
|
|
desktop-file-utils,
|
|
fetchFromGitHub,
|
|
lib,
|
|
libadwaita,
|
|
libportal-gtk4,
|
|
meson,
|
|
ninja,
|
|
python3Packages,
|
|
wrapGAppsHook4,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "adwsteamgtk";
|
|
version = "0.8.0";
|
|
# built with meson, not a python format
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Foldex";
|
|
repo = "AdwSteamGtk";
|
|
tag = "v${version}";
|
|
hash = "sha256-n+BNqa+SHB1V1INHooc0VpeqZ2Dy1Byt7mrbJc2MXts=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
libportal-gtk4
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
packaging
|
|
pygobject3
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple Gtk wrapper for Adwaita-for-Steam";
|
|
homepage = "https://github.com/Foldex/AdwSteamGtk";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
reedrw
|
|
iedame
|
|
];
|
|
mainProgram = "adwaita-steam-gtk";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|