forked from mirrors/nixpkgs
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:
parent
198dda950b
commit
0d08b2c599
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue