rusty-psn, rusty-psn-gui: init at 0.1.2

This commit is contained in:
Emil "AngryAnt" Johansen 2022-08-05 16:33:34 +02:00
parent 6f73b0ca72
commit c9f7f02bbe
No known key found for this signature in database
GPG Key ID: 0C6DFE2FB234534A
2 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,80 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, makeDesktopItem
, copyDesktopItems
, pkg-config
, openssl
, xorg
, libGL
, gui ? false # build GUI version
}:
rustPlatform.buildRustPackage rec {
pname = "rusty-psn";
version = "0.1.2";
src = fetchFromGitHub {
owner = "RainbowCookie32";
repo = "rusty-psn";
rev = "v${version}";
sha256 = "14li5fsaj4l5al6lcxy07g3gzmi0l3cyiczq44q7clq4myhykhhb";
};
cargoSha256 = "0kjaq3ik3lwaz7rjb5jaxavpahzp33j7vln3zyifql7j7sbr300f";
nativeBuildInputs = [
pkg-config
copyDesktopItems
];
dependencies = if gui then [
openssl
xorg.libxcb
xorg.libX11
xorg.libXcursor
xorg.libXrandr
xorg.libXi
xorg.libxcb
libGL
libGL.dev
] else [
openssl
];
buildInputs = dependencies;
buildNoDefaultFeatures = true;
buildFeatures = [ (if gui then "egui" else "cli") ];
postFixup = ''
patchelf --set-rpath "${lib.makeLibraryPath dependencies}" $out/bin/rusty-psn
${if gui then "mv $out/bin/rusty-psn $out/bin/rusty-psn-gui" else ""}
'';
desktopItem = if gui then 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"
];
} else "";
desktopItems = if gui then [ desktopItem ] else [];
meta = with lib; {
description = "A simple tool to grab updates for PS3 games, directly from Sony's servers using their updates API";
homepage = "";
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ AngryAnt ];
};
}

View File

@ -30212,6 +30212,10 @@ with pkgs;
runc = callPackage ../applications/virtualization/runc {};
rusty-psn = callPackage ../applications/misc/rusty-psn {};
rusty-psn-gui = rusty-psn.override { gui = true; };
rymcast = callPackage ../applications/audio/rymcast {
inherit (gnome) zenity;
};