Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cifs-utils: add optional dependencies #352406

Merged
merged 2 commits into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 36 additions & 9 deletions pkgs/os-specific/linux/cifs-utils/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
{ stdenv, lib, fetchurl, autoreconfHook, docutils, pkg-config
, libkrb5, keyutils, pam, talloc, python3 }:
{
stdenv,
lib,
fetchurl,
autoreconfHook,
docutils,
pkg-config,
libcap,
libkrb5,
keyutils,
pam,
samba,
talloc,
python3,
}:

stdenv.mkDerivation rec {
pname = "cifs-utils";
Expand All @@ -10,16 +23,30 @@ stdenv.mkDerivation rec {
sha256 = "sha256-De+quFvT6kb/xFq0H7DQrVTQWuLPqn5QPehtTxK8gWE=";
};

nativeBuildInputs = [ autoreconfHook docutils pkg-config ];

buildInputs = [ libkrb5 keyutils pam talloc python3 ];
nativeBuildInputs = [
autoreconfHook
docutils
pkg-config
];

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"
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";
Expand Down