nixpkgs-suyu/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-01-29 12:02:13 +01:00
version = "1.2.7";
src = fetchFromGitHub {
owner = "relan";
2018-01-29 12:02:13 +01:00
repo = "exfat";
rev = "v${version}";
sha256 = "1sk4z133djh8sdvx2vvmd8kf4qfly2i3hdar4zpg0s41jpbzdx69";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2018-01-29 12:02:13 +01:00
buildInputs = [ fuse ];
meta = with stdenv.lib; {
description = "Free exFAT file system implementation";
2018-01-29 12:02:13 +01:00
inherit (src.meta) homepage;
license = licenses.gpl2Plus;
2018-01-29 12:02:13 +01:00
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}