summary refs log tree commit diff
path: root/pkgs/tools/filesystems/romdirfs
diff options
context:
space:
mode:
authorBignaux Ronan <ronan@aimao.org>2020-02-13 13:07:35 +0100
committerBignaux Ronan <ronan@aimao.org>2020-03-08 13:45:06 +0100
commita201e3dbc4949400e99189fa1c5196668722eeaf (patch)
tree2c54b6594d806b5d18e5a354b27a675c595005c0 /pkgs/tools/filesystems/romdirfs
parent1502b28679e5470478dec6e7159c8f23ccd220ef (diff)
downloadnixpkgs-a201e3dbc4949400e99189fa1c5196668722eeaf.tar
nixpkgs-a201e3dbc4949400e99189fa1c5196668722eeaf.tar.gz
nixpkgs-a201e3dbc4949400e99189fa1c5196668722eeaf.tar.bz2
nixpkgs-a201e3dbc4949400e99189fa1c5196668722eeaf.tar.lz
nixpkgs-a201e3dbc4949400e99189fa1c5196668722eeaf.tar.xz
nixpkgs-a201e3dbc4949400e99189fa1c5196668722eeaf.tar.zst
nixpkgs-a201e3dbc4949400e99189fa1c5196668722eeaf.zip
romdirfs: init at 1.2
Diffstat (limited to 'pkgs/tools/filesystems/romdirfs')
-rw-r--r--pkgs/tools/filesystems/romdirfs/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/romdirfs/default.nix b/pkgs/tools/filesystems/romdirfs/default.nix
new file mode 100644
index 00000000000..8085eb5f234
--- /dev/null
+++ b/pkgs/tools/filesystems/romdirfs/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, fuse }:
+
+stdenv.mkDerivation rec {
+  pname = "romdirfs";
+  version = "1.2";
+
+  src = fetchFromGitHub {
+    owner = "mlafeldt";
+    repo = "romdirfs";
+    rev = "v${version}";
+    sha256 = "1jbsmpklrycz5q86qmzvbz4iz2g5fvd7p9nca160aw2izwpws0g7";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+  buildInputs = [ fuse ];
+
+  meta = with stdenv.lib; {
+    description = "FUSE for access Playstation 2 IOP IOPRP images and BIOS dumps";
+    homepage = https://github.com/mlafeldt/romdirfs;
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ genesis ];
+  };
+}