biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / filesystems / exfat / default.nix
blob831f19c68f68b4904add1a00f9b827b247472b61
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse }:
3 stdenv.mkDerivation rec {
4   pname = "exfat";
5   version = "1.4.0";
7   src = fetchFromGitHub {
8     owner = "relan";
9     repo = "exfat";
10     rev = "v${version}";
11     sha256 = "sha256-5m8fiItEOO6piR132Gxq6SHOPN1rAFTuTVE+UI0V00k=";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config ];
15   buildInputs = [ fuse ];
17   meta = with lib; {
18     description = "Free exFAT file system implementation";
19     inherit (src.meta) homepage;
20     license = licenses.gpl2Plus;
21     maintainers = with maintainers; [ dywedir ];
22     platforms = platforms.unix;
23   };