ntfsprogs-plus: correct build inputs (#468921)

This commit is contained in:
Aleksana
2025-12-09 02:51:29 +00:00
committed by GitHub
+6 -2
View File
@@ -5,7 +5,7 @@
autoreconfHook,
pkg-config,
libgcrypt,
gnutls,
libuuid,
gettext,
gitUpdater,
}:
@@ -32,10 +32,14 @@ stdenv.mkDerivation (finalAttrs: {
pkg-config
];
# We don't need GnuTLS despite the configure warning about its absence,
# because ntfsdecrypt from ntfs-3g is not used in ntfsprogs-plus and is not built.
# See: https://github.com/search?q=repo%3Antfsprogs-plus%2Fntfsprogs-plus%20gnutls&type=code
buildInputs = [
# autoreconf will not succeed without libgcrypt, maybe due to leftover checks from ntfs-3g?
libgcrypt
gnutls
]
++ lib.optionals stdenv.hostPlatform.isLinux [ libuuid ]
++ lib.optionals (!stdenv.hostPlatform.isGnu) [ gettext ];
configureFlags = [ "--exec-prefix=\${prefix}" ];