102 lines
2.1 KiB
Nix
102 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
makeDesktopItem,
|
|
copyDesktopItems,
|
|
pkg-config,
|
|
cmake,
|
|
fontconfig,
|
|
glib,
|
|
gtk3,
|
|
freetype,
|
|
openssl,
|
|
xorg,
|
|
libGL,
|
|
libxkbcommon,
|
|
wayland,
|
|
withGui ? false, # build GUI version
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rusty-psn";
|
|
version = "0.5.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RainbowCookie32";
|
|
repo = "rusty-psn";
|
|
tag = "v${version}";
|
|
hash = "sha256-Al0cT4WaOX7gxOkD5ciRntbGLCCDFSjj83E4n8nXp6I=";
|
|
};
|
|
|
|
cargoHash = "sha256-FaKUQk/Q2hE0lZ11QSKA2P2BLlBNih47zzuwpMsblhw=";
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
]
|
|
++ lib.optionals withGui [
|
|
copyDesktopItems
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
]
|
|
++ lib.optionals withGui [
|
|
fontconfig
|
|
glib
|
|
gtk3
|
|
freetype
|
|
openssl
|
|
xorg.libxcb
|
|
xorg.libX11
|
|
xorg.libXcursor
|
|
xorg.libXrandr
|
|
xorg.libXi
|
|
xorg.libxcb
|
|
libGL
|
|
libxkbcommon
|
|
wayland
|
|
];
|
|
|
|
buildNoDefaultFeatures = true;
|
|
buildFeatures = [ (if withGui then "egui" else "cli") ];
|
|
|
|
postFixup = ''
|
|
patchelf --set-rpath "${lib.makeLibraryPath buildInputs}" $out/bin/rusty-psn
|
|
''
|
|
+ lib.optionalString withGui ''
|
|
mv $out/bin/rusty-psn $out/bin/rusty-psn-gui
|
|
'';
|
|
|
|
desktopItem = lib.optionalString withGui (makeDesktopItem {
|
|
name = "rusty-psn";
|
|
desktopName = "rusty-psn";
|
|
exec = "rusty-psn-gui";
|
|
comment = "A simple tool to grab updates for PS3 games, directly from Sony's servers using their updates API.";
|
|
categories = [
|
|
"Network"
|
|
];
|
|
keywords = [
|
|
"psn"
|
|
"ps3"
|
|
"sony"
|
|
"playstation"
|
|
"update"
|
|
];
|
|
});
|
|
desktopItems = lib.optionals withGui [ desktopItem ];
|
|
|
|
meta = {
|
|
description = "Simple tool to grab updates for PS3 games, directly from Sony's servers using their updates API";
|
|
homepage = "https://github.com/RainbowCookie32/rusty-psn/";
|
|
license = lib.licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with lib.maintainers; [ AngryAnt ];
|
|
mainProgram = if withGui then "rusty-psn-gui" else "rusty-psn";
|
|
};
|
|
}
|