Files
nixpkgs/pkgs/by-name/pr/protonplus/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

66 lines
1.2 KiB
Nix

{
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;
};
})