mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
3279998207
0.14.13 was tagged the same day as 0.4.11, and only includes fixes for appstream data. It seems 0.14.12 was skipped? 🤷 Changelog: https://github.com/Vysp3r/ProtonPlus/releases/tag/v0.4.11 Diff: https://github.com/Vysp3r/ProtonPlus/compare/v0.4.10...v0.4.13
66 lines
1.2 KiB
Nix
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.4.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Vysp3r";
|
|
repo = "protonplus";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-eIW30Tl/vOLXlUXiN3lAcww7Ipkfshzilb9ntxjF8C0=";
|
|
};
|
|
|
|
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 = "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;
|
|
};
|
|
})
|