2021-01-17 01:17:16 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, fuse }:
|
2020-02-13 04:07:35 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "romdirfs";
|
|
|
|
version = "1.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mlafeldt";
|
|
|
|
repo = "romdirfs";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1jbsmpklrycz5q86qmzvbz4iz2g5fvd7p9nca160aw2izwpws0g7";
|
|
|
|
};
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2020-02-13 04:07:35 -08:00
|
|
|
buildInputs = [ fuse ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-02-13 04:07:35 -08:00
|
|
|
description = "FUSE for access Playstation 2 IOP IOPRP images and BIOS dumps";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/mlafeldt/romdirfs";
|
2020-02-13 04:07:35 -08:00
|
|
|
license = licenses.gpl3;
|
2021-03-27 08:11:22 -07:00
|
|
|
platforms = platforms.unix;
|
2020-11-17 08:50:53 -08:00
|
|
|
maintainers = with maintainers; [ ];
|
2020-02-13 04:07:35 -08:00
|
|
|
};
|
|
|
|
}
|