Enhance Nix package definitions by adding new packages for inputs and steam-python, updating build inputs for colordle and dosage, and improving installation scripts. Notable changes include the addition of desktop and metainfo files for colordle, and ensuring proper GResource handling in dosage.

This commit is contained in:
Danilo Reyes
2025-10-25 20:00:10 -06:00
parent a8e7517e9a
commit d1f011ba1f
6 changed files with 189 additions and 16 deletions

View File

@@ -2,6 +2,7 @@
lib,
buildPythonApplication,
fetchFromGitHub,
callPackage,
setuptools,
pyside6,
pyxdg,
@@ -41,8 +42,8 @@ buildPythonApplication rec {
requests
vdf
zstandard
# Note: inputs and steam dependencies removed as they're not in nixpkgs
# May need to add them back if they become available in nixpkgs
(callPackage ./inputs.nix { })
(callPackage ./steam-python.nix { })
];
meta = {
@@ -50,6 +51,6 @@ buildPythonApplication rec {
homepage = "https://github.com/DavidoTek/ProtonUp-Qt";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ CaptainJawZ ];
mainProgram = "proton-up-qt";
mainProgram = "protonup-qt";
};
}