mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #15020 from sheenobu/freeradius/bugfix/checkrad_paths
freeradius: fix checkrad paths by providing perl, finger substitution
This commit is contained in:
commit
8e1a1baf33
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, autoreconfHook, talloc
|
||||
{ stdenv, fetchurl, autoreconfHook, talloc, finger_bsd, perl
|
||||
, openssl
|
||||
, linkOpenssl? true
|
||||
, openldap
|
||||
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||
name = "freeradius-${version}";
|
||||
version = "3.0.11";
|
||||
|
||||
buildInputs = [ autoreconfHook openssl talloc ]
|
||||
buildInputs = [ autoreconfHook openssl talloc finger_bsd perl ]
|
||||
++ optional withLdap [ openldap ]
|
||||
++ optional withSqlite [ sqlite ]
|
||||
++ optional withPcap [ libpcap ]
|
||||
@ -60,6 +60,10 @@ stdenv.mkDerivation rec {
|
||||
"--localstatedir=/var"
|
||||
] ++ optional (!linkOpenssl) "--with-openssl=no";
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace src/main/checkrad.in --replace "/usr/bin/finger" "${finger_bsd}/bin/finger"
|
||||
'';
|
||||
|
||||
installFlags = [
|
||||
"sysconfdir=\${out}/etc"
|
||||
"localstatedir=\${TMPDIR}"
|
||||
|
Loading…
Reference in New Issue
Block a user