depot/pkgs/tools/filesystems/exfat/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
616 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse }:
stdenv.mkDerivation rec {
pname = "exfat";
version = "1.4.0";
src = fetchFromGitHub {
owner = "relan";
repo = "exfat";
rev = "v${version}";
sha256 = "sha256-5m8fiItEOO6piR132Gxq6SHOPN1rAFTuTVE+UI0V00k=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ fuse ];
meta = with lib; {
description = "Free exFAT file system implementation";
inherit (src.meta) homepage;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.unix;
};
}