chore: add lib for making systemd sysexts
This commit is contained in:
parent
e49c2b22b5
commit
4ecf8ead2a
2 changed files with 102 additions and 0 deletions
15
flake.nix
15
flake.nix
|
@ -45,6 +45,21 @@
|
|||
dbus-broker = pkgs.callPackage ./pkgs/dbus-broker { };
|
||||
|
||||
qemu-uefi-tpm = pkgs.callPackage ./utils/qemu-uefi-tpm.nix { };
|
||||
|
||||
debug-tools-sysext = pkgs.callPackage ./lib/make-sysext.nix {
|
||||
name = "debug-tools";
|
||||
version = "0.0.1";
|
||||
packages = [
|
||||
{ drv = pkgs.curl; path = "bin/curl"; }
|
||||
{ drv = patosPkgs.tpm2-tools; path = "bin/tpm2"; }
|
||||
{ drv = pkgs.cryptsetup; path = "bin/cryptsetup"; }
|
||||
{ drv = pkgs.cryptsetup; path = "bin/veritysetup"; }
|
||||
# shared lib required for cryptsetup
|
||||
{ drv = pkgs.popt; path = "lib/libpopt.so.0.0.2"; }
|
||||
{ drv = pkgs.popt; path = "lib/libpopt.so.0"; }
|
||||
{ drv = pkgs.popt; path = "lib/libpopt.so"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
checks = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue