1

Add wiiudownloader derivation

This commit is contained in:
2023-05-12 16:35:57 +02:00
parent 16e49770e2
commit daeda57710
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{
lib,
stdenv,
pkgs,
fetchurl
}:
pkgs.appimageTools.wrapType2 rec {
name = "WiiUDownloader";
version = "v1.32";
src = fetchurl {
url = "https://github.com/Xpl0itU/WiiUDownloader/releases/download/${version}/WiiUDownloader-Linux-x86_64.AppImage";
sha256 = "";
};
extraPackages = with pkgs; [];
}