mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
100 lines
2.3 KiB
Nix
100 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
flex,
|
|
bison,
|
|
linuxHeaders,
|
|
libtirpc,
|
|
mount,
|
|
umount,
|
|
nfs-utils,
|
|
e2fsprogs,
|
|
libxml2,
|
|
libkrb5,
|
|
kmod,
|
|
openldap,
|
|
sssd,
|
|
cyrus_sasl,
|
|
openssl,
|
|
rpcsvc-proto,
|
|
pkgconf,
|
|
fetchpatch,
|
|
libnsl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "5.1.9";
|
|
pname = "autofs";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/daemons/autofs/v5/autofs-${version}.tar.xz";
|
|
sha256 = "sha256-h+avagN5S5Ri6lGXgeUOfSO198ks1Z4RQshdJJOzwks=";
|
|
};
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "mirror://kernel/linux/daemons/autofs/v5/patches-5.2.0/autofs-5.1.9-update-configure.patch";
|
|
hash = "sha256-BomhNw+lMHcgs5gQlzapZ6p/Ji3gJUVkrLpZssBmwbg=";
|
|
})
|
|
(fetchpatch {
|
|
url = "mirror://kernel/linux/daemons/autofs/v5/patches-5.2.0/autofs-5.1.9-fix-ldap_parse_page_control-check.patch";
|
|
hash = "sha256-W757LU9r9kuzLeThif2a1olRtxNrJy5suemLS7yfbIU=";
|
|
})
|
|
(fetchpatch {
|
|
url = "mirror://kernel/linux/daemons/autofs/v5/patches-5.2.0/autofs-5.1.9-fix-crash-in-make_options_string.patch";
|
|
hash = "sha256-YjTdJ50iNhJ2UjFdrKYEFNt04z0PfmElbFa4GuSskLA=";
|
|
})
|
|
];
|
|
|
|
preConfigure = ''
|
|
configureFlags="--enable-force-shutdown --enable-ignore-busy --with-path=$PATH --with-libtirpc"
|
|
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.
|
|
'';
|
|
|
|
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
|
|
libnsl
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
flex
|
|
bison
|
|
pkgconf
|
|
libnsl.dev
|
|
];
|
|
|
|
meta = {
|
|
description = "Kernel-based automounter";
|
|
mainProgram = "automount";
|
|
homepage = "https://www.kernel.org/pub/linux/daemons/autofs/";
|
|
license = lib.licenses.gpl2Plus;
|
|
executables = [ "automount" ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|