2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse }:
|
2015-09-11 20:12:24 +00:00
|
|
|
|
2015-09-11 20:31:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "exfat";
|
2023-03-05 22:08:36 +00:00
|
|
|
version = "1.4.0";
|
2015-09-11 20:12:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "relan";
|
2018-01-29 11:02:13 +00:00
|
|
|
repo = "exfat";
|
|
|
|
rev = "v${version}";
|
2023-03-05 22:08:36 +00:00
|
|
|
sha256 = "sha256-5m8fiItEOO6piR132Gxq6SHOPN1rAFTuTVE+UI0V00k=";
|
2015-09-11 20:12:24 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-01-29 11:02:13 +00:00
|
|
|
buildInputs = [ fuse ];
|
2015-09-11 20:12:24 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-09-11 20:31:16 +00:00
|
|
|
description = "Free exFAT file system implementation";
|
2018-01-29 11:02:13 +00:00
|
|
|
inherit (src.meta) homepage;
|
2015-09-11 20:12:24 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2018-01-29 11:02:13 +00:00
|
|
|
maintainers = with maintainers; [ dywedir ];
|
2021-03-27 07:08:16 +00:00
|
|
|
platforms = platforms.unix;
|
2015-09-11 20:12:24 +00:00
|
|
|
};
|
|
|
|
}
|