lol

exfatprogs: init at 1.1.2

authored by

Zane van Iperen and committed by
Profpatsch
67641dc3 d2d33bbd

+25
+23
pkgs/tools/filesystems/exfatprogs/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "exfatprogs"; 5 + version = "1.1.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = pname; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "19pbybgbfnvjb3n944ihrn1r8ch4dm8dr0d44d6w7p63dcp372xy"; 12 + }; 13 + 14 + nativeBuildInputs = [ pkg-config autoreconfHook file ]; 15 + 16 + meta = with lib; { 17 + description = "exFAT filesystem userspace utilities"; 18 + homepage = "https://github.com/exfatprogs/exfatprogs"; 19 + license = licenses.gpl2Plus; 20 + maintainers = with maintainers; [ zane ]; 21 + platforms = platforms.linux; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 4957 4957 4958 4958 exfat = callPackage ../tools/filesystems/exfat { }; 4959 4959 4960 + exfatprogs = callPackage ../tools/filesystems/exfatprogs { }; 4961 + 4960 4962 dos2unix = callPackage ../tools/text/dos2unix { }; 4961 4963 4962 4964 uni2ascii = callPackage ../tools/text/uni2ascii { };