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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
670 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, fuse }:
2020-02-13 12:07:35 +00:00
stdenv.mkDerivation rec {
pname = "romdirfs";
version = "1.2";
src = fetchFromGitHub {
owner = "mlafeldt";
repo = "romdirfs";
rev = "v${version}";
sha256 = "1jbsmpklrycz5q86qmzvbz4iz2g5fvd7p9nca160aw2izwpws0g7";
};
nativeBuildInputs = [ cmake pkg-config ];
2020-02-13 12:07:35 +00:00
buildInputs = [ fuse ];
meta = with lib; {
2020-02-13 12:07:35 +00:00
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;
2021-03-27 15:11:22 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ ];
2023-11-23 21:09:35 +00:00
mainProgram = "romdirfs";
2020-02-13 12:07:35 +00:00
};
}