diff --git a/pkgs/by-name/re/rewaita/package.nix b/pkgs/by-name/re/rewaita/package.nix new file mode 100644 index 000000000000..216ac1f98c51 --- /dev/null +++ b/pkgs/by-name/re/rewaita/package.nix @@ -0,0 +1,69 @@ +{ + lib, + python3Packages, + fetchFromGitHub, + ninja, + meson, + pkg-config, + wrapGAppsHook4, + glib, + gtk4, + desktop-file-utils, + appstream-glib, + blueprint-compiler, + libadwaita, + nix-update-script, +}: +let + version = "1.0.1"; +in +python3Packages.buildPythonApplication { + pname = "rewaita"; + inherit version; + pyproject = false; + + src = fetchFromGitHub { + owner = "SwordPuffin"; + repo = "Rewaita"; + tag = "v${version}"; + hash = "sha256-adSXq+DFw3IQxNuUkP1FcKlIh9h4Zb0tJKswYs3S92E="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + meson + ninja + pkg-config + wrapGAppsHook4 + glib + gtk4 + desktop-file-utils + appstream-glib + blueprint-compiler + ]; + + dependencies = with python3Packages; [ + pygobject3 + ]; + + buildInputs = [ + libadwaita + gtk4 + ]; + + dontWrapGApps = true; + makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Bring color to Adwaita"; + homepage = "https://github.com/SwordPuffin/Rewaita"; + changelog = "https://github.com/SwordPuffin/Rewaita/releases/tag/v${version}"; + license = lib.licenses.gpl3Plus; + mainProgram = "rewaita"; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.awwpotato ]; + }; +}