42 lines
923 B
Nix
42 lines
923 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, meson
|
||
|
, ninja
|
||
|
, glib
|
||
|
, libkrb5
|
||
|
, libnl
|
||
|
, libtool
|
||
|
, pkg-config
|
||
|
, withKerberos ? false
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "ksmbd-tools";
|
||
|
version = "3.5.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cifsd-team";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-QE/Pnba4zgeInlVqOEjT3EqV6NPkQTp6xeYU3dsIl4M=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ glib libnl ] ++ lib.optional withKerberos libkrb5;
|
||
|
|
||
|
nativeBuildInputs = [ meson ninja libtool pkg-config ];
|
||
|
patches = [ ./0001-skip-installing-example-configuration.patch ];
|
||
|
mesonFlags = [
|
||
|
"-Drundir=/run"
|
||
|
"-Dsystemdsystemunitdir=lib/systemd/system"
|
||
|
"--sysconfdir /etc"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Userspace utilities for the ksmbd kernel SMB server";
|
||
|
homepage = "https://www.kernel.org/doc/html/latest/filesystems/cifs/ksmbd.html";
|
||
|
license = licenses.gpl2Only;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|