{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }: stdenv.mkDerivation rec { pname = "exfatprogs"; version = "1.2.2"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; sha256 = "sha256-2j+N/H+Vdy3Q6Ie2gBGkNKtLjt19RDvm9HZMS5l3L5Y="; }; 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; }; }