summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-21 23:19:30 -0400
committerseth <[email protected]>2024-05-22 16:21:31 -0600
commit2b7d1b3cc31e9200639459236c267f1d65021b38 (patch)
tree1478fff3ec45fcf75aff4f60a05ddb90adba6948
parent9021ba8692f47c0f08c27704de4f9485f880fe36 (diff)
protonplus: drop
it's been merged into nixpkgs
-rw-r--r--pkgs/protonplus.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/protonplus.nix b/pkgs/protonplus.nix
deleted file mode 100644
index 4182b55..0000000
--- a/pkgs/protonplus.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- 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;
- };
-})