nixpkgs-suyu/pkgs/tools/filesystems/exfat/default.nix
Tobias Geerinckx-Rice 81a7a3f652 exfat 1.2.1 -> 1.2.2
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.
2015-11-09 17:30:14 +01:00

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 ];
};
}