2019-07-25 15:29:39 +02:00
|
|
|
{ stdenv, utillinux, coreutils, fetchurl, groff, system-sendmail }:
|
2018-10-27 11:34:56 +02:00
|
|
|
|
2010-05-15 20:43:24 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-28 11:39:13 +01:00
|
|
|
name = "mdadm-4.1";
|
2011-10-06 15:15:09 +02:00
|
|
|
|
2007-01-10 22:47:03 +01:00
|
|
|
src = fetchurl {
|
2015-12-09 19:17:30 +01:00
|
|
|
url = "mirror://kernel/linux/utils/raid/mdadm/${name}.tar.xz";
|
2018-10-28 11:39:13 +01:00
|
|
|
sha256 = "0jjgjgqijpdp7ijh8slzzjjw690kydb1jjadf0x5ilq85628hxmb";
|
2007-01-10 22:47:03 +01:00
|
|
|
};
|
|
|
|
|
2015-12-09 19:17:30 +01:00
|
|
|
patches = [ ./no-self-references.patch ];
|
|
|
|
|
2015-12-09 20:02:37 +01:00
|
|
|
makeFlags = [
|
2019-07-25 15:29:39 +02:00
|
|
|
"NIXOS=1" "INSTALL=install" "BINDIR=$(out)/sbin"
|
2019-07-25 15:36:05 +02:00
|
|
|
"SYSTEMD_DIR=$(out)/lib/systemd/system"
|
2015-12-09 20:02:37 +01:00
|
|
|
"MANDIR=$(out)/share/man" "RUN_DIR=/dev/.mdadm"
|
2017-07-19 14:59:40 +02:00
|
|
|
"STRIP="
|
2018-08-20 20:43:41 +02:00
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2017-11-25 19:43:57 +01:00
|
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
2015-12-09 20:02:37 +01:00
|
|
|
];
|
|
|
|
|
2019-07-25 15:36:05 +02:00
|
|
|
installFlags = [ "install-systemd" ];
|
|
|
|
|
2019-07-25 15:29:39 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ groff ];
|
2010-05-15 20:43:24 +02:00
|
|
|
|
2019-07-25 15:29:39 +02:00
|
|
|
postPatch = ''
|
2016-05-04 13:20:39 +02:00
|
|
|
sed -e 's@/lib/udev@''${out}/lib/udev@' \
|
|
|
|
-e 's@ -Werror @ @' \
|
2019-09-18 20:12:58 +02:00
|
|
|
-e 's@/usr/sbin/sendmail@${system-sendmail}/bin/sendmail@' -i Makefile
|
2019-07-25 15:29:39 +02:00
|
|
|
sed -i \
|
|
|
|
-e 's@/usr/bin/basename@${coreutils}/bin/basename@g' \
|
|
|
|
-e 's@BINDIR/blkid@${utillinux}/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
|
2015-12-09 20:02:37 +01:00
|
|
|
'';
|
2007-01-10 22:47:03 +01:00
|
|
|
|
2018-08-17 22:40:20 +02:00
|
|
|
meta = with stdenv.lib; {
|
2007-01-10 22:47:03 +01:00
|
|
|
description = "Programs for managing RAID arrays under Linux";
|
2010-05-16 22:25:57 +02:00
|
|
|
homepage = http://neil.brown.name/blog/mdadm;
|
2018-08-17 22:40:20 +02:00
|
|
|
license = licenses.gpl2;
|
2018-10-28 11:39:13 +01:00
|
|
|
maintainers = with maintainers; [ ekleog ];
|
2018-08-17 22:40:20 +02:00
|
|
|
platforms = platforms.linux;
|
2007-01-10 22:47:03 +01:00
|
|
|
};
|
|
|
|
}
|