1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 17:41:12 +00:00
nixpkgs/pkgs/tools/filesystems/exfat/default.nix

25 lines
625 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
stdenv.mkDerivation rec {
name = "exfat-${version}";
2016-06-06 21:40:43 +01:00
version = "1.2.4";
src = fetchFromGitHub {
2016-06-06 21:40:43 +01:00
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 ];
};
}