Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildDotnetModule,
|
|
fetchFromGitHub,
|
|
zlib,
|
|
openssl,
|
|
dotnetCorePackages,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "ps3-disc-dumper";
|
|
version = "4.3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "13xforever";
|
|
repo = "ps3-disc-dumper";
|
|
tag = "v${version}";
|
|
hash = "sha256-F+FyCuxzg7oTF2iRxWygXeGnspHrZ3Za8HhCSKNgoR4=";
|
|
};
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_9_0;
|
|
dotnet-runtime = dotnetCorePackages.sdk_9_0;
|
|
dotnetFlags = [ "-p:TargetFramework=net9.0" ];
|
|
dotnetRestoreFlags = [ "-p:Configuration=${buildType}" ];
|
|
buildType = "Linux";
|
|
projectFile = "UI.Avalonia/UI.Avalonia.csproj";
|
|
nugetDeps = ./deps.json;
|
|
|
|
runtimeDeps = [
|
|
zlib
|
|
openssl
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Handy utility to make decrypted PS3 disc dumps";
|
|
homepage = "https://github.com/13xforever/ps3-disc-dumper";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "ps3-disc-dumper";
|
|
maintainers = with lib.maintainers; [
|
|
evanjs
|
|
gepbird
|
|
];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|