2021-07-03 03:11:41 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "exfatprogs";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "1.2.1";
|
2021-07-03 03:11:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-xNspLbm7v4nj82Y4gYqWEBU7cVlFBh3rnqhQ8CXEqrw=";
|
2021-07-03 03:11:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook file ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "exFAT filesystem userspace utilities";
|
|
|
|
homepage = "https://github.com/exfatprogs/exfatprogs";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ zane ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|