diff options
| author | seth <[email protected]> | 2024-03-10 22:36:55 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-03-10 22:36:55 -0400 |
| commit | ca5b1d79dafeef4258dc4cec4d4c04281d27e0d1 (patch) | |
| tree | 078430c595a7ccf1004c4eab89cd8bd616047d94 /pkgs/protonplus.nix | |
| parent | 00bf92aa9f29635f4d9c28665e6db11de9e20a63 (diff) | |
papa+protonplus: init
Diffstat (limited to 'pkgs/protonplus.nix')
| -rw-r--r-- | pkgs/protonplus.nix | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/protonplus.nix b/pkgs/protonplus.nix new file mode 100644 index 0000000..4182b55 --- /dev/null +++ b/pkgs/protonplus.nix @@ -0,0 +1,48 @@ +{ + 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.gpl3; + maintainers = with maintainers; [getchoo]; + platforms = platforms.linux; + }; +}) |
