Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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.5.12";
src = fetchFromGitHub {
owner = "Vysp3r";
repo = "protonplus";
tag = "v${finalAttrs.version}";
hash = "sha256-SarSM4AJB1LyENm/TG1VPdItZpsx0tgjfx+YhLKP+LA=";
};
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 = {
mainProgram = "protonplus";
description = "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 = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ getchoo ];
platforms = lib.platforms.linux;
};
})