Merge pull request #80013 from bignaux/romdirfs

romdirfs: init at 1.2
This commit is contained in:
Aaron Andersen 2020-03-08 20:39:34 -04:00 committed by GitHub
commit 2c61263fb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -25496,6 +25496,8 @@ in
rmount = callPackage ../tools/filesystems/rmount {};
romdirfs = callPackage ../tools/filesystems/romdirfs {};
rss-glx = callPackage ../misc/screensavers/rss-glx { };
run-scaled = callPackage ../tools/X11/run-scaled { };