mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
systemdUkify: fix missing cryptography dependency
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
(cherry picked from commit 69f0475533)
This commit is contained in:
parent
770f24b979
commit
333fd3591d
1 changed files with 8 additions and 1 deletions
|
|
@ -363,7 +363,14 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
++ lib.optionals (withHomed || withCryptsetup) [ libfido2 ]
|
||||
++ lib.optionals withLibBPF [ libbpf ]
|
||||
++ lib.optional withTpm2Tss tpm2-tss
|
||||
++ lib.optional withUkify (python3Packages.python.withPackages (ps: with ps; [ pefile ]))
|
||||
++ lib.optional withUkify (
|
||||
python3Packages.python.withPackages (
|
||||
ps: with ps; [
|
||||
cryptography
|
||||
pefile
|
||||
]
|
||||
)
|
||||
)
|
||||
++ lib.optionals withPasswordQuality [ libpwquality ]
|
||||
++ lib.optionals withQrencode [ qrencode ]
|
||||
++ lib.optionals withLibarchive [ libarchive ]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue