2023-05-15 01:12:35 +02:00
|
|
|
{
|
|
|
|
systemd,
|
|
|
|
stdenv,
|
|
|
|
makeWrapper,
|
|
|
|
binutils-unwrapped,
|
|
|
|
sbsigntool,
|
|
|
|
rustPlatform,
|
|
|
|
fetchFromGitHub,
|
|
|
|
lib,
|
|
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "lanzaboote-tool";
|
|
|
|
version = "0.3.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = "lanzaboote";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = "v${version}";
|
2023-05-15 01:12:35 +02:00
|
|
|
hash = "sha256-Fb5TeRTdvUlo/5Yi2d+FC8a6KoRLk2h1VE0/peMhWPs=";
|
|
|
|
};
|
|
|
|
|
2024-03-09 01:04:40 +08:00
|
|
|
sourceRoot = "${src.name}/rust/tool";
|
2025-01-23 08:45:31 +01:00
|
|
|
useFetchCargoVendor = true;
|
|
|
|
cargoHash = "sha256-HnTsu46P3HRYo2d1DeaP6hqn+pVW3J4IM+CneckSFoM=";
|
2023-05-15 01:12:35 +02:00
|
|
|
|
|
|
|
env.TEST_SYSTEMD = systemd;
|
|
|
|
doCheck = lib.meta.availableOn stdenv.hostPlatform systemd;
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Clean PATH to only contain what we need to do objcopy.
|
|
|
|
# This is still an unwrapped lanzaboote tool lacking of the
|
|
|
|
# UEFI stub location.
|
|
|
|
mv $out/bin/lzbt $out/bin/lzbt-unwrapped
|
|
|
|
wrapProgram $out/bin/lzbt-unwrapped \
|
|
|
|
--set PATH ${
|
|
|
|
lib.makeBinPath [
|
|
|
|
binutils-unwrapped
|
|
|
|
sbsigntool
|
|
|
|
]
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
binutils-unwrapped
|
|
|
|
sbsigntool
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2023-11-27 19:49:28 +01:00
|
|
|
description = "Lanzaboote UEFI tooling for SecureBoot enablement on NixOS systems (unwrapped; does not contain the required stub)";
|
2023-05-15 01:12:35 +02:00
|
|
|
homepage = "https://github.com/nix-community/lanzaboote";
|
|
|
|
license = licenses.gpl3Only;
|
2023-11-27 19:48:32 +01:00
|
|
|
mainProgram = "lzbt-unwrapped";
|
2023-05-15 01:12:35 +02:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
raitobezarius
|
|
|
|
nikstur
|
|
|
|
];
|
|
|
|
# Broken on aarch64-linux and any other architecture for now.
|
|
|
|
# Wait for 0.4.0.
|
|
|
|
platforms = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"i686-linux"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|