summary refs log tree commit diff
path: root/pkgs/tools/filesystems/romdirfs/default.nix
blob: 8085eb5f2347e1a9261cc9c195fd6702fb2c8a01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}