nixpkgs/pkgs/tools/filesystems/exfat/default.nix
Tobias Geerinckx-Rice 86f9ead288
exfat: 1.2.3 -> 1.2.4
2016-06-06 22:40:43 +02:00

25 lines
625 B
Nix

{ 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 ];
};
}