exfat: migrate to fuse3, set meta.hompeage explicitly (#521739)

This commit is contained in:
Vlad M.
2026-05-30 06:18:14 +00:00
committed by GitHub
+5 -5
View File
@@ -4,7 +4,7 @@
fetchFromGitHub,
autoreconfHook,
pkg-config,
fuse,
fuse3,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -14,15 +14,15 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "relan";
repo = "exfat";
rev = "v${finalAttrs.version}";
sha256 = "sha256-5m8fiItEOO6piR132Gxq6SHOPN1rAFTuTVE+UI0V00k=";
tag = "v${finalAttrs.version}";
hash = "sha256-5m8fiItEOO6piR132Gxq6SHOPN1rAFTuTVE+UI0V00k=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [ fuse ];
buildInputs = [ fuse3 ];
outputs = [
"out"
@@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Free exFAT file system implementation";
inherit (finalAttrs.src.meta) homepage;
homepage = "https://github.com/relan/exfat";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ dywedir ];
platforms = lib.platforms.unix;