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