mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
chrony: Build with NSS for secure hash support
This commit is contained in:
parent
a639e51760
commit
596b06bd1c
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, libcap, readline, texinfo }:
|
||||
{ stdenv, fetchurl, pkgconfig, libcap, readline, texinfo, nss, nspr }:
|
||||
|
||||
assert stdenv.isLinux -> libcap != null;
|
||||
|
||||
@ -12,7 +12,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1194maargy4hpl2a3vy5mbrrswzajjdn92p4w17gbb9vlq7q5zfk";
|
||||
};
|
||||
|
||||
buildInputs = [ readline texinfo ] ++ stdenv.lib.optional stdenv.isLinux libcap;
|
||||
buildInputs = [ readline texinfo nss nspr ] ++ stdenv.lib.optional stdenv.isLinux libcap;
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
configureFlags = [
|
||||
"--sysconfdir=$(out)/etc"
|
||||
|
Loading…
Reference in New Issue
Block a user