about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-09 16:10:02 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-09 17:30:14 +0100
commit81a7a3f652795225ccdea4bdc23ef06856d7583c (patch)
treefa78525865f3c584d0ff16aa556e000b4205331b /pkgs/tools
parent39e585b9252c4115d14fdc23134004b1d08417c4 (diff)
downloadnixlib-81a7a3f652795225ccdea4bdc23ef06856d7583c.tar
nixlib-81a7a3f652795225ccdea4bdc23ef06856d7583c.tar.gz
nixlib-81a7a3f652795225ccdea4bdc23ef06856d7583c.tar.bz2
nixlib-81a7a3f652795225ccdea4bdc23ef06856d7583c.tar.lz
nixlib-81a7a3f652795225ccdea4bdc23ef06856d7583c.tar.xz
nixlib-81a7a3f652795225ccdea4bdc23ef06856d7583c.tar.zst
nixlib-81a7a3f652795225ccdea4bdc23ef06856d7583c.zip
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.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/filesystems/exfat/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix
index 08cb70dcfc88..f8a0d09bc52a 100644
--- a/pkgs/tools/filesystems/exfat/default.nix
+++ b/pkgs/tools/filesystems/exfat/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
 
-let version = "1.2.1"; in
+let version = "1.2.2"; in
 stdenv.mkDerivation rec {
   name = "exfat-${version}";
 
   src = fetchFromGitHub {
-    sha256 = "1k716civkxszkzpc7bcqqcmfik8lpwk3zwp2nl4v844b8g7r5xz9";
+    sha256 = "17yyd988l4r5w3q3h3hjlxprbw74wdg4n759lzg325smh96qk7p1";
     rev = "v${version}";
     repo = "exfat";
     owner = "relan";