81a7a3f652
Changes: - Improved reliability in case of a sudden unplug: FS will be in a clean state after closing all files and performing sync(1). - Fixed compilation on Debian GNU/kFreeBSD and GNU/Hurd platforms. - Updated mount.exfat-fuse man page.
25 lines
651 B
Nix
25 lines
651 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
|
|
|
|
let version = "1.2.2"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "exfat-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "17yyd988l4r5w3q3h3hjlxprbw74wdg4n759lzg325smh96qk7p1";
|
|
rev = "v${version}";
|
|
repo = "exfat";
|
|
owner = "relan";
|
|
};
|
|
|
|
buildInputs = [ fuse ];
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit version;
|
|
inherit (src.meta) homepage;
|
|
description = "Free exFAT file system implementation";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|