24 lines
614 B
Nix
24 lines
614 B
Nix
|
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "exfatprogs";
|
||
|
version = "1.1.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = pname;
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "19pbybgbfnvjb3n944ihrn1r8ch4dm8dr0d44d6w7p63dcp372xy";
|
||
|
};
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|