2016-03-24 12:42:27 +01:00
|
|
|
{ stdenv, systemd, cryptsetup }:
|
|
|
|
|
2018-08-29 18:03:40 +02:00
|
|
|
systemd.overrideAttrs (p: {
|
2016-03-24 12:42:27 +01:00
|
|
|
version = p.version;
|
2018-05-25 11:21:07 +02:00
|
|
|
name = "systemd-cryptsetup-generator-${p.version}";
|
2016-03-24 12:42:27 +01:00
|
|
|
|
2018-08-29 18:03:40 +02:00
|
|
|
buildInputs = p.buildInputs ++ [ cryptsetup ];
|
2016-03-24 12:42:27 +01:00
|
|
|
outputs = [ "out" ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
2018-02-20 12:06:55 +01:00
|
|
|
ninja systemd-cryptsetup systemd-cryptsetup-generator
|
2016-03-24 12:42:27 +01:00
|
|
|
'';
|
|
|
|
|
2018-04-11 20:51:39 +02:00
|
|
|
# As ninja install is not used here, the rpath needs to be manually fixed.
|
|
|
|
# Otherwise the resulting binary doesn't properly link against systemd-shared.so
|
|
|
|
postFixup = ''
|
|
|
|
sharedLib=libsystemd-shared-${p.version}.so
|
|
|
|
for prog in `find $out -type f -executable`; do
|
|
|
|
(patchelf --print-needed $prog | grep $sharedLib > /dev/null) && (
|
|
|
|
patchelf --set-rpath `patchelf --print-rpath $prog`:"$out/lib/systemd" $prog
|
|
|
|
) || true
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-03-24 12:42:27 +01:00
|
|
|
installPhase = ''
|
2016-03-24 13:30:29 +01:00
|
|
|
mkdir -p $out/lib/systemd/
|
2018-02-20 12:06:55 +01:00
|
|
|
cp systemd-cryptsetup $out/lib/systemd/systemd-cryptsetup
|
|
|
|
cp src/shared/*.so $out/lib/systemd/
|
2016-03-24 15:50:39 +01:00
|
|
|
|
|
|
|
mkdir -p $out/lib/systemd/system-generators/
|
2018-02-20 12:06:55 +01:00
|
|
|
cp systemd-cryptsetup-generator $out/lib/systemd/system-generators/systemd-cryptsetup-generator
|
2016-03-24 12:42:27 +01:00
|
|
|
'';
|
|
|
|
})
|