rng-tools: don't use librtlsdr alias

This commit is contained in:
Robert Schütz 2023-02-27 08:38:01 -08:00 committed by Robert Schütz
parent cf3243a243
commit cb1ee0a78a

View file

@ -12,7 +12,7 @@
# https://www.nist.gov/programs-projects/nist-randomness-beacon
, curl, jansson, libxml2, withNistBeacon ? false
, libp11, opensc, withPkcs11 ? true
, librtlsdr, withRtlsdr ? true
, rtl-sdr, withRtlsdr ? true
}:
stdenv.mkDerivation rec {
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
++ lib.optionals withJitterEntropy [ jitterentropy ]
++ lib.optionals withNistBeacon [ curl jansson libxml2 ]
++ lib.optionals withPkcs11 [ libp11 libp11.passthru.openssl ]
++ lib.optionals withRtlsdr [ librtlsdr ];
++ lib.optionals withRtlsdr [ rtl-sdr ];
enableParallelBuilding = true;