blob: e9e90b3c388b560b2d6f3385022b1a501ce8a6ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{ lib, stdenv, util-linux, coreutils, fetchurl, groff, system-sendmail, udev }:
stdenv.mkDerivation rec {
pname = "mdadm";
version = "4.3";
src = fetchurl {
url = "mirror://kernel/linux/utils/raid/mdadm/mdadm-${version}.tar.xz";
sha256 = "sha256-QWcnrh8QgOpuMJDOo23QdoJvw2kVHjarc2VXupIZb58=";
};
patches = [
./no-self-references.patch
./fix-hardcoded-mapdir.patch
];
makeFlags = [
"NIXOS=1" "INSTALL=install" "BINDIR=$(out)/sbin"
"SYSTEMD_DIR=$(out)/lib/systemd/system"
"MANDIR=$(out)/share/man" "RUN_DIR=/dev/.mdadm"
"STRIP="
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
];
installFlags = [ "install-systemd" ];
enableParallelBuilding = true;
buildInputs = [ udev ];
nativeBuildInputs = [ groff ];
postPatch = ''
sed -e 's@/lib/udev@''${out}/lib/udev@' \
-e 's@ -Werror @ @' \
-e 's@/usr/sbin/sendmail@${system-sendmail}/bin/sendmail@' -i Makefile
sed -i \
-e 's@/usr/bin/basename@${coreutils}/bin/basename@g' \
-e 's@BINDIR/blkid@${util-linux}/bin/blkid@g' \
*.rules
'';
# This is to avoid self-references, which causes the initrd to explode
# in size and in turn prevents mdraid systems from booting.
postFixup = ''
grep -r $out $out/bin && false || true
'';
meta = with lib; {
description = "Programs for managing RAID arrays under Linux";
homepage = "https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git";
license = licenses.gpl2;
mainProgram = "mdadm";
maintainers = with maintainers; [ ekleog ];
platforms = platforms.linux;
};
}
|