rng-tools: 6.6 -> 6.7

A few other changes:

 - use autoreconfHook instead of doing it manually
 - clean up with/enable flags
 - add support for PKCS11 entropy sources

PKCS11 is not fully tested yet as my hardware hasn't arrived.
This commit is contained in:
Peter Hoeg 2019-04-24 11:54:57 +08:00
parent c4919b614e
commit c9b0c68dc0

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, libtool, autoconf, automake, pkgconfig { stdenv, fetchFromGitHub, libtool, autoreconfHook, pkgconfig
, sysfsutils , sysfsutils
# WARNING: DO NOT USE BEACON GENERATED VALUES AS SECRET CRYPTOGRAPHIC KEYS # WARNING: DO NOT USE BEACON GENERATED VALUES AS SECRET CRYPTOGRAPHIC KEYS
# https://www.nist.gov/programs-projects/nist-randomness-beacon # https://www.nist.gov/programs-projects/nist-randomness-beacon
@ -8,32 +8,43 @@
# Not sure if jitterentropy is safe to use for cryptography # Not sure if jitterentropy is safe to use for cryptography
# and thus a default entropy source # and thus a default entropy source
, jitterentropy ? null, withJitterEntropy ? false , jitterentropy ? null, withJitterEntropy ? false
, libp11 ? null, withPkcs11 ? true
}: }:
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "rng-tools-${version}"; pname = "rng-tools";
version = "6.6"; version = "6.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nhorman"; owner = "nhorman";
repo = "rng-tools"; repo = "rng-tools";
rev = "v${version}"; rev = "v${version}";
sha256 = "0c32sxfvngdjzfmxn5ngc5yxwi8ij3yl216nhzyz9r31qi3m14v7"; sha256 = "19f75m6mzg8h7b4snzg7d6ypvkz6nq32lrpi9ja95gqz4wsd18a5";
}; };
nativeBuildInputs = [ libtool autoconf automake pkgconfig ]; postPatch = ''
cp README.md README
'';
preConfigure = "./autogen.sh"; nativeBuildInputs = [ autoreconfHook libtool pkgconfig ];
configureFlags = configureFlags = [
optional (!withJitterEntropy) "--disable-jitterentropy" (withFeature withGcrypt "libgcrypt")
++ optional (!withNistBeacon) "--without-nistbeacon" (enableFeature withJitterEntropy "jitterentropy")
++ optional (!withGcrypt) "--without-libgcrypt"; (withFeature withNistBeacon "nistbeacon")
(withFeature withPkcs11 "pkcs11")
];
buildInputs = [ sysfsutils ] buildInputs = [ sysfsutils ]
++ optional withJitterEntropy [ jitterentropy ] ++ optionals withGcrypt [ libgcrypt ]
++ optional withGcrypt [ libgcrypt.dev ] ++ optionals withJitterEntropy [ jitterentropy ]
++ optional withNistBeacon [ openssl.dev curl.dev libxml2.dev ]; ++ optionals withNistBeacon [ openssl curl libxml2 ]
++ optionals withPkcs11 [ libp11 openssl ];
# This shouldn't be necessary but is as of 6.7
NIX_LDFLAGS = optionalString withPkcs11 "-lcrypto";
enableParallelBuilding = true; enableParallelBuilding = true;
@ -43,8 +54,8 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "A random number generator daemon"; description = "A random number generator daemon";
homepage = https://github.com/nhorman/rng-tools; homepage = https://github.com/nhorman/rng-tools;
license = stdenv.lib.licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ johnazoidberg ]; maintainers = with maintainers; [ johnazoidberg ];
}; };
} }