ags added

This commit is contained in:
soraefir
2026-06-12 01:18:56 +02:00
parent 526a36b6e6
commit 582b96779e
12 changed files with 1075 additions and 30 deletions

12
overlays/ags/default.nix Normal file
View File

@@ -0,0 +1,12 @@
{ final, prev, ... }:
prev.ags.overrideAttrs (old: rec {
version = "3.1.2";
src = prev.fetchFromGitHub {
owner = "Aylur";
repo = "ags";
rev = "v${version}";
hash = "sha256-tM3s7CX+tgxlYW0Sk3nzVThg2MHn08foIuMxABupxIs=";
};
modRoot = "cli";
vendorHash = "sha256-UHMHbUGqJeUTw0AHHyTdQ8ed5z+SFyPcdXs4shC+hoI=";
})