summary refs log tree commit diff
path: root/pkgs/tools/security/sshguard
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-14 18:50:12 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-04-04 03:18:58 +0200
commit33a395f1957ed8da558f8a145c2e06a428779eb0 (patch)
tree7fd44050167f3185256f02e8a7ec88e932754be9 /pkgs/tools/security/sshguard
parent8e1db896a39cbcae79924534a6e383c58f5db7f9 (diff)
downloadnixpkgs-33a395f1957ed8da558f8a145c2e06a428779eb0.tar
nixpkgs-33a395f1957ed8da558f8a145c2e06a428779eb0.tar.gz
nixpkgs-33a395f1957ed8da558f8a145c2e06a428779eb0.tar.bz2
nixpkgs-33a395f1957ed8da558f8a145c2e06a428779eb0.tar.lz
nixpkgs-33a395f1957ed8da558f8a145c2e06a428779eb0.tar.xz
nixpkgs-33a395f1957ed8da558f8a145c2e06a428779eb0.tar.zst
nixpkgs-33a395f1957ed8da558f8a145c2e06a428779eb0.zip
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
Diffstat (limited to 'pkgs/tools/security/sshguard')
-rw-r--r--pkgs/tools/security/sshguard/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/sshguard/default.nix b/pkgs/tools/security/sshguard/default.nix
index 88e726bc863..f42a1ec96f4 100644
--- a/pkgs/tools/security/sshguard/default.nix
+++ b/pkgs/tools/security/sshguard/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, autoreconfHook, yacc, flex}:
+{ lib, stdenv, fetchurl, autoreconfHook, bison, flex}:
 
 stdenv.mkDerivation rec {
   version = "2.4.1";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
 
-  nativeBuildInputs = [ autoreconfHook yacc flex ];
+  nativeBuildInputs = [ autoreconfHook bison flex ];
 
   configureFlags = [ "--sysconfdir=/etc" ];