1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-5m8fiItEOO6piR132Gxq6SHOPN1rAFTuTVE+UI0V00k=";
14 nativeBuildInputs = [ autoreconfHook pkg-config ];
15 buildInputs = [ fuse ];
18 description = "Free exFAT file system implementation";
19 inherit (src.meta) homepage;
20 license = licenses.gpl2Plus;
21 maintainers = with maintainers; [ dywedir ];
22 platforms = platforms.unix;