cdecrypt: init at 4.8

This commit is contained in:
Hugh O'Brien 2023-04-03 13:11:03 -04:00
parent f0f598bee4
commit 205fa27e47
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "cdecrypt";
version = "4.8";
src = fetchFromGitHub {
owner = "VitaSmith";
repo = "cdecrypt";
rev = "refs/tags/v${version}";
hash = "sha256-PyT60RDyp1/Co/7WHC0+KrsnrDeTJ605x1pt4OmlGYg=";
};
installPhase = ''
install -Dm755 cdecrypt $out/bin/cdecrypt
'';
meta = with lib; {
description = "A utility that decrypts Wii U NUS content files";
homepage = "https://github.com/VitaSmith/cdecrypt";
changelog = "https://github.com/VitaSmith/cdecrypt/releases/tag/v${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ hughobrien ];
platforms = platforms.linux;
};
}

View File

@ -402,6 +402,8 @@ with pkgs;
cereal = callPackage ../development/libraries/cereal { };
cdecrypt = callPackage ../development/tools/cdecrypt { };
certgraph = callPackage ../tools/security/certgraph { };
cewl = callPackage ../tools/security/cewl { };