Skip to content

Commit

Permalink
cifs-utils: add optional dependencies (NixOS#352406)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse authored Nov 1, 2024
2 parents 51031f2 + f4fdf30 commit 17915e1
Showing 1 changed file with 36 additions and 9 deletions.
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-ohEj92pKajbJZTGJukkY6988/NP5CScwpH/zRQtbWyo=";
};

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

0 comments on commit 17915e1

Please sign in to comment.