819ca0997e
Fixes: - Fixed clusters loss when file renaming replaces target.
26 lines
651 B
Nix
26 lines
651 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
|
|
|
|
let version = "1.2.3"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "exfat-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "147s11sqmn5flbvz2hwpl6kdfqi2gnm1c2nsn5fxygyw7qyhpzda";
|
|
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 ];
|
|
};
|
|
}
|