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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
616 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse }:
stdenv.mkDerivation rec {
pname = "exfat";
2023-03-05 22:08:36 +00:00
version = "1.4.0";
src = fetchFromGitHub {
owner = "relan";
2018-01-29 11:02:13 +00:00
repo = "exfat";
rev = "v${version}";
2023-03-05 22:08:36 +00:00
sha256 = "sha256-5m8fiItEOO6piR132Gxq6SHOPN1rAFTuTVE+UI0V00k=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2018-01-29 11:02:13 +00:00
buildInputs = [ fuse ];
meta = with 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 ];
2021-03-27 07:08:16 +00:00
platforms = platforms.unix;
};
}