depot/third_party/nixpkgs/pkgs/tools/filesystems/exfat/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

24 lines
616 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
stdenv.mkDerivation rec {
pname = "exfat";
version = "1.3.0";
src = fetchFromGitHub {
owner = "relan";
repo = "exfat";
rev = "v${version}";
sha256 = "1q29pcysv747y6dis07953dkax8k9x50b5gg99gpz6rr46xwgkgb";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ fuse ];
meta = with lib; {
description = "Free exFAT file system implementation";
inherit (src.meta) homepage;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}