nixpkgs/pkgs/tools/filesystems/exfat/default.nix

25 lines
628 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
stdenv.mkDerivation rec {
name = "exfat-${version}";
2018-09-15 09:46:04 +01:00
version = "1.3.0";
src = fetchFromGitHub {
owner = "relan";
2018-01-29 11:02:13 +00:00
repo = "exfat";
rev = "v${version}";
2018-09-15 09:46:04 +01:00
sha256 = "1q29pcysv747y6dis07953dkax8k9x50b5gg99gpz6rr46xwgkgb";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2018-01-29 11:02:13 +00:00
buildInputs = [ fuse ];
meta = with stdenv.lib; {
description = "Free exFAT file system implementation";
2018-01-29 11:02:13 +00:00
inherit (src.meta) homepage;
license = licenses.gpl2Plus;
2018-01-29 11:02:13 +00:00
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}