remove disabled hardening and build pfsfuse to mount ps2 pfs images as a file system 1.1.1 release is almost 5 years old but development has continued
45 lines
994 B
Nix
45 lines
994 B
Nix
{
|
|
cmake,
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fuse,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
version = "1.1.1-unstable-2025-07-13";
|
|
pname = "pfsshell";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ps2homebrew";
|
|
repo = "pfsshell";
|
|
rev = "8192de3907a05bb1844afcb1ae490179a38d4ed6";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-drQNnCIqwM+Lnix5LewkD2ov8G6Mbu60xVKQKvCFbPY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
fuse
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
mesonFlags = [ (lib.mesonBool "enable_pfsfuse" true) ];
|
|
|
|
meta = {
|
|
inherit (finalAttrs.src.meta) homepage;
|
|
description = "PFS (PlayStation File System) shell for POSIX-based systems";
|
|
platforms = lib.platforms.unix;
|
|
license = with lib.licenses; [
|
|
gpl2Only # the pfsshell software itself
|
|
afl20 # APA, PFS, and iomanX libraries which are compiled together with this package
|
|
];
|
|
maintainers = with lib.maintainers; [ makefu ];
|
|
mainProgram = "pfsshell";
|
|
};
|
|
})
|