mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ lib, stdenv, fetchurl, flex, bison, linuxHeaders, libtirpc, mount, umount, nfs-utils, e2fsprogs
|
|
, libxml2, libkrb5, kmod, openldap, sssd, cyrus_sasl, openssl, rpcsvc-proto }:
|
|
|
|
let
|
|
version = "5.1.6";
|
|
name = "autofs-${version}";
|
|
in stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/daemons/autofs/v5/${name}.tar.xz";
|
|
sha256 = "1vya21mb4izj3khcr3flibv7xc15vvx2v0rjfk5yd31qnzcy7pnx";
|
|
};
|
|
|
|
preConfigure = ''
|
|
configureFlags="--enable-force-shutdown --enable-ignore-busy --with-path=$PATH"
|
|
export sssldir="${sssd}/lib/sssd/modules"
|
|
export HAVE_SSS_AUTOFS=1
|
|
|
|
export MOUNT=${mount}/bin/mount
|
|
export MOUNT_NFS=${nfs-utils}/bin/mount.nfs
|
|
export UMOUNT=${umount}/bin/umount
|
|
export MODPROBE=${kmod}/bin/modprobe
|
|
export E2FSCK=${e2fsprogs}/bin/fsck.ext2
|
|
export E3FSCK=${e2fsprogs}/bin/fsck.ext3
|
|
export E4FSCK=${e2fsprogs}/bin/fsck.ext4
|
|
|
|
unset STRIP # Makefile.rules defines a usable STRIP only without the env var.
|
|
'';
|
|
|
|
# configure script is not finding the right path
|
|
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
|
|
|
installPhase = ''
|
|
make install SUBDIRS="lib daemon modules man" # all but samples
|
|
#make install SUBDIRS="samples" # impure!
|
|
'';
|
|
|
|
buildInputs = [ linuxHeaders libtirpc libxml2 libkrb5 kmod openldap sssd
|
|
openssl cyrus_sasl rpcsvc-proto ];
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
meta = {
|
|
description = "Kernel-based automounter";
|
|
homepage = "https://www.kernel.org/pub/linux/daemons/autofs/";
|
|
license = lib.licenses.gpl2Plus;
|
|
executables = [ "automount" ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|