Skip to content

Commit

Permalink
ps3-disc-dumper: init at 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
evanjs committed Aug 23, 2022
1 parent 9f4088c commit d4ebb55
Show file tree
Hide file tree
Showing 3 changed files with 286 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pkgs/tools/games/ps3-disc-dumper/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ lib
, buildDotnetModule
, dotnetCorePackages
, fetchFromGitHub
, zlib
, openssl
}:

buildDotnetModule rec {
pname = "ps3-disc-dumper";
version = "3.2.3";

src = fetchFromGitHub {
owner = "13xforever";
repo = "ps3-disc-dumper";
rev = "v${version}";
sha256 = "sha256-m3TS9H6cbEAHn6PvYQDMzdKdnOnDSM4lxCTdHBCXLV4=";
};

selfContainedBuild = true;

projectFile = "UI.Console/UI.Console.csproj";
nugetDeps = ./deps.nix;

runtimeDeps = [
zlib
openssl
];

dotnetFlags = [
"--runtime linux-x64"
];

meta = with lib; {
homepage = "https://github.com/13xforever/ps3-disc-dumper";
description = "A handy utility to make decrypted PS3 disc dumps";
license = licenses.mit;
maintainers = with maintainers; [ evanjs ];
platforms = [ "x86_64-linux" ];
};
}
Loading

0 comments on commit d4ebb55

Please sign in to comment.