Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.0 KiB
Nix
58 lines
1.0 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
autoreconfHook,
|
|
docutils,
|
|
pkg-config,
|
|
libcap,
|
|
libkrb5,
|
|
keyutils,
|
|
pam,
|
|
samba,
|
|
talloc,
|
|
python3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cifs-utils";
|
|
version = "7.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.samba.org/pub/linux-cifs/cifs-utils/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-UzU9BcMLT8nawAao8MUFTN2KGDTBdjE8keRpQCXEuJE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
docutils
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
keyutils
|
|
libcap
|
|
libkrb5
|
|
pam
|
|
python3
|
|
samba
|
|
talloc
|
|
];
|
|
|
|
configureFlags = [
|
|
"ROOTSBINDIR=$(out)/sbin"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
# AC_FUNC_MALLOC is broken on cross builds.
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.samba.org/index.php/LinuxCIFS_utils";
|
|
description = "Tools for managing Linux CIFS client filesystems";
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl3;
|
|
};
|
|
}
|