afflib: fix build on darwin, remove libiconv (#446118)

This commit is contained in:
7c6f434c
2025-09-29 06:35:57 +00:00
committed by GitHub
+6 -6
View File
@@ -5,21 +5,21 @@
zlib,
curl,
expat,
fuse,
fuse3,
openssl,
autoreconfHook,
python3,
libiconv,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
version = "3.7.22";
pname = "afflib";
src = fetchFromGitHub {
owner = "sshock";
repo = "AFFLIBv3";
tag = "v${version}";
tag = "v${finalAttrs.version}";
sha256 = "sha256-pGInhJQBhFJhft/KfB3J3S9/BVp9D8TZ+uw2CUNVC+Q=";
};
@@ -31,8 +31,8 @@ stdenv.mkDerivation rec {
openssl
python3
]
++ lib.optionals (with stdenv; isLinux || isDarwin) [ fuse3 ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
++ lib.optionals stdenv.hostPlatform.isLinux [ fuse3 ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ fuse ];
meta = {
homepage = "http://afflib.sourceforge.net/";
@@ -42,4 +42,4 @@ stdenv.mkDerivation rec {
maintainers = [ lib.maintainers.raskin ];
downloadPage = "https://github.com/sshock/AFFLIBv3/tags";
};
}
})