ma pkgs.ns-usbloader: init

This commit is contained in:
makefu 2022-03-28 18:04:33 +02:00
parent 581245ed35
commit 4156d2ed15
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 36 additions and 0 deletions

View File

@ -15,6 +15,7 @@
nx_game_info
hactool
nsrenamer
ns-usbloader
sfo
exfatprogs exfat-utils exfat
];

View File

@ -0,0 +1,35 @@
{ lib, stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
name = "ns-usbloader-${version}";
version = "5.2";
src = fetchurl {
url = "https://github.com/developersu/ns-usbloader/releases/download/v${version}/ns-usbloader-${version}.jar";
sha256 = "06kzshlvqfwcjjddzqqgq13pqa5qjlajpyn6ksqxy5p5hgarj6i6";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
dontUnpack = true;
installPhase = ''
runHook preInstall
install -D $src $out/ns-usbloader/ns-usbloader.jar
makeWrapper ${jre}/bin/java $out/bin/ns-usbloader \
--add-flags "-jar $out/ns-usbloader/ns-usbloader.jar"
runHook postInstall
'';
meta = with lib; {
description = "Awoo Installer and GoldLeaf uploader of the NSPs (and other files), RCM payload injector, application for split/merge files";
homepage = https://github.com/developersu/ns-usbloader;
maintainers = [ maintainers.makefu ];
platforms = platforms.linux;
license = with licenses; [ gpl3 ];
};
}