exfat: 1.2.0 -> 1.2.1

Upstream changes:
- Fixed compatibility with Zalman VE-200: now newly created directories do
  not have archive bit set.
- Fixed heap corruption: malformed FS can use invalid sector or cluster size.
- Fixed hang on mount: malformed FS can have cyclic references in the
  clusters map.
This commit is contained in:
Tobias Geerinckx-Rice 2015-09-24 13:29:52 +02:00
parent 198dda950b
commit 0d08b2c599

View File

@ -1,11 +1,11 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
let version = "1.2.0"; in
let version = "1.2.1"; in
stdenv.mkDerivation rec {
name = "exfat-${version}";
src = fetchFromGitHub {
sha256 = "1fsm082g8phqcdg5md6yll06jijnbvqrdy0638psa8kr159h4dv8";
sha256 = "1k716civkxszkzpc7bcqqcmfik8lpwk3zwp2nl4v844b8g7r5xz9";
rev = "v${version}";
repo = "exfat";
owner = "relan";
@ -23,4 +23,3 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ nckx ];
};
}