From 933a4dcedcac54b9903f3582a48d09de3e88ece2 Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 15 Mar 2024 07:16:42 -0400 Subject: [PATCH] protonplus: init at 0.4.9 --- pkgs/by-name/pr/protonplus/package.nix | 65 ++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 pkgs/by-name/pr/protonplus/package.nix diff --git a/pkgs/by-name/pr/protonplus/package.nix b/pkgs/by-name/pr/protonplus/package.nix new file mode 100644 index 000000000000..94d6f2f65e9a --- /dev/null +++ b/pkgs/by-name/pr/protonplus/package.nix @@ -0,0 +1,65 @@ +{ + lib, + stdenv, + fetchFromGitHub, + nix-update-script, + desktop-file-utils, + wrapGAppsHook4, + meson, + ninja, + pkg-config, + vala, + glib, + glib-networking, + gtk4, + json-glib, + libadwaita, + libarchive, + libgee, + libsoup_3, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "protonplus"; + version = "0.4.9"; + + src = fetchFromGitHub { + owner = "Vysp3r"; + repo = "protonplus"; + rev = "v${finalAttrs.version}"; + hash = "sha256-rYGUKOVQHYaUzQZaVas5zy26xv2NchcqZ7YvTmejb20="; + }; + + nativeBuildInputs = [ + desktop-file-utils + meson + ninja + pkg-config + vala + wrapGAppsHook4 + ]; + + buildInputs = [ + glib + glib-networking + gtk4 + json-glib + libadwaita + libarchive + libgee + libsoup_3 + ]; + + passthru = { + updateScript = nix-update-script { }; + }; + + meta = with lib; { + mainProgram = "com.vysp3r.ProtonPlus"; + description = "A simple Wine and Proton-based compatibility tools manager"; + homepage = "https://github.com/Vysp3r/ProtonPlus"; + changelog = "https://github.com/Vysp3r/ProtonPlus/releases/tag/v${finalAttrs.version}"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ getchoo ]; + platforms = platforms.linux; + }; +})