added fusefatfs as a nur pkg

This commit is contained in:
Sebastian Moser
2025-01-30 18:03:21 +01:00
parent c47e391de8
commit 09422ad13e

View File

@@ -0,0 +1,38 @@
{ stdenv
, fetchFromGitHub
, cmake
, lib
, pkg-config
, fuse
}:
stdenv.mkDerivation rec {
name = "fusefatfs";
src = fetchFromGitHub {
owner = "virtualsquare";
repo = "fusefatfs";
rev = "4bcc1cad3a220cdc09b55609a16cfeb11caa349b";
sha256 = "sha256-7y30iPwGiE4/PKZX8HhUfa2PaqV4y+zUP57xlD961kg=";
};
nativeBuildInputs = [
cmake
pkg-config
fuse
];
buildInputs = [
];
meta = with lib; {
description = "mount FAT file systems with FUSE";
longDescription = ''
This repository generates both the fusefatfs command for FUSE (Filesystem in Userspace) and the plug-in submodule for VUOS.
'';
homepage = "https://github.com/virtualsquare/fusefatfs";
license = licenses.gpl2Only;
#maintainers = [ ];
platforms = platforms.all;
};
}