summary refs log blame commit diff
path: root/pkgs/tools/filesystems/exfat/default.nix
blob: aba0418e9dea1c6c6d0a61e2c5002fc71ff6e424 (plain) (tree)
1
2
3
4
5
6
7
8

                                                             

                            
                    

                         
                                                                    








                                                   

                                                          




                                             
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:

stdenv.mkDerivation rec {
  name = "exfat-${version}";
  version = "1.2.4";

  src = fetchFromGitHub {
    sha256 = "0x8wjvvlqmp0g2361m6d24csi1p4df8za2cqhyys03s1hv1qmy0k";
    rev = "v${version}";
    repo = "exfat";
    owner = "relan";
  };

  buildInputs = [ fuse ];
  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  meta = with stdenv.lib; {
    inherit (src.meta) homepage;
    description = "Free exFAT file system implementation";
    platforms = platforms.linux;
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ nckx ];
  };
}