summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2020-12-08 05:38:25 +0100
committerGitHub <noreply@github.com>2020-12-08 05:38:25 +0100
commit8c321dd36bcce7b8a1e487df8b9ad2b2873eab04 (patch)
treeea5b35dccfb615d9913e2f139d454e818bfe7317 /pkgs/tools/misc
parent395cfa475dfe288252d40dc042dc55bf0d105f85 (diff)
parent41bded79e7009c4d1b405b8d7c9b635685b36832 (diff)
Merge pull request #101248 from makefu/pkgs/pfsshell/init
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/pfsshell/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/misc/pfsshell/default.nix b/pkgs/tools/misc/pfsshell/default.nix
new file mode 100644
index 000000000000..e941cbd84c79
--- /dev/null
+++ b/pkgs/tools/misc/pfsshell/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, meson, ninja }:
+
+stdenv.mkDerivation rec {
+ version = "1.1.1";
+ pname = "pfsshell";
+
+ src = fetchFromGitHub {
+ owner = "uyjulian";
+ repo = "pfsshell";
+ rev = "v${version}";
+ sha256 = "0cr91al3knsbfim75rzl7rxdsglcc144x0nizn7q4jx5cad3zbn8";
+ };
+
+ nativeBuildInputs = [ meson ninja ];
+
+ # Build errors since 1.1.1 when format hardening is enabled:
+ # cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
+ hardeningDisable = [ "format" ];
+
+ meta = with stdenv.lib; {
+ inherit (src.meta) homepage;
+ description = "PFS (PlayStation File System) shell for POSIX-based systems";
+ platforms = platforms.unix;
+ license = with licenses; [
+ gpl2Only # the pfsshell software itself
+ afl20 # APA, PFS, and iomanX libraries which are compiled together with this package
+ ];
+ maintainers = with maintainers; [ makefu ];
+ };
+}