34 lines
617 B
Nix
34 lines
617 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
autoreconfHook,
|
|
file,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exfatprogs";
|
|
version = "1.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-VUvVPABgQ7EUQu90DbWU7a+YThrWhusTk/YreKSqU/M=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
file
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "exFAT filesystem userspace utilities";
|
|
homepage = "https://github.com/exfatprogs/exfatprogs";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|