1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1q29pcysv747y6dis07953dkax8k9x50b5gg99gpz6rr46xwgkgb";
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;