tpm2-totp: add plymouth integration support

+8 -1
+4 -1
pkgs/by-name/tp/tpm2-totp/package.nix
··· 7 autoconf-archive, 8 pandoc, 9 pkg-config, 10 qrencode, 11 }: 12 ··· 35 buildInputs = [ 36 tpm2-tss 37 qrencode 38 - ]; 39 40 meta = with lib; { 41 description = "Attest the trustworthiness of a device against a human using time-based one-time passwords";
··· 7 autoconf-archive, 8 pandoc, 9 pkg-config, 10 + withPlymouth ? false, 11 + plymouth, 12 qrencode, 13 }: 14 ··· 37 buildInputs = [ 38 tpm2-tss 39 qrencode 40 + ] 41 + ++ lib.optional withPlymouth plymouth; 42 43 meta = with lib; { 44 description = "Attest the trustworthiness of a device against a human using time-based one-time passwords";
+4
pkgs/top-level/all-packages.nix
··· 4275 } 4276 ); 4277 4278 trackma-curses = trackma.override { withCurses = true; }; 4279 4280 trackma-gtk = trackma.override { withGTK = true; };
··· 4275 } 4276 ); 4277 4278 + tpm2-totp-with-plymouth = tpm2-totp.override { 4279 + withPlymouth = true; 4280 + }; 4281 + 4282 trackma-curses = trackma.override { withCurses = true; }; 4283 4284 trackma-gtk = trackma.override { withGTK = true; };