nixpkgs/pkgs/tools/filesystems/romdirfs/default.nix

25 lines
641 B
Nix
Raw Normal View History

2020-02-13 12:07:35 +00:00
{ 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";
2020-02-13 12:07:35 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
2020-02-13 12:07:35 +00:00
};
}