mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21df40f85f
The annoying wrapper script also wraps `systemd-cryptsetup`. We need to copy the original binary to $out too.
31 lines
908 B
Nix
31 lines
908 B
Nix
{ stdenv, systemd, cryptsetup }:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.lib.overrideDerivation systemd (p: {
|
|
version = p.version;
|
|
name = "systemd-cryptsetup-generator";
|
|
|
|
nativeBuildInputs = p.nativeBuildInputs ++ [ cryptsetup ];
|
|
outputs = [ "out" ];
|
|
|
|
buildPhase = ''
|
|
make $makeFlags built-sources
|
|
make $makeFlags systemd-cryptsetup
|
|
make $makeFlags systemd-cryptsetup-generator
|
|
'';
|
|
|
|
# For some reason systemd-cryptsetup-generator is a wrapper-script
|
|
# with the current release of systemd. We want the real one.
|
|
|
|
# TODO: Remove `.libs` prefix when the wrapper-script is gone
|
|
installPhase = ''
|
|
mkdir -p $out/lib/systemd/
|
|
cp .libs/systemd-cryptsetup $out/lib/systemd/systemd-cryptsetup
|
|
cp .libs/*.so $out/lib/
|
|
|
|
mkdir -p $out/lib/systemd/system-generators/
|
|
cp .libs/systemd-cryptsetup-generator $out/lib/systemd/system-generators/systemd-cryptsetup-generator
|
|
'';
|
|
})
|