exfatprogs: init at 1.1.2
(cherry picked from commit a2292607a632f0dd4d4374ee16df2246292af478)
This commit is contained in:
parent
4ae8822f0a
commit
f6aab9913b
|
@ -0,0 +1,23 @@
|
||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4822,6 +4822,8 @@ in
|
||||||
|
|
||||||
exfat = callPackage ../tools/filesystems/exfat { };
|
exfat = callPackage ../tools/filesystems/exfat { };
|
||||||
|
|
||||||
|
exfatprogs = callPackage ../tools/filesystems/exfatprogs { };
|
||||||
|
|
||||||
dos2unix = callPackage ../tools/text/dos2unix { };
|
dos2unix = callPackage ../tools/text/dos2unix { };
|
||||||
|
|
||||||
uni2ascii = callPackage ../tools/text/uni2ascii { };
|
uni2ascii = callPackage ../tools/text/uni2ascii { };
|
||||||
|
|
Loading…
Reference in New Issue