about summary refs log tree commit diff
path: root/pkgs/development/tools/cdecl
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/development/tools/cdecl
parent8e1db896a39cbcae79924534a6e383c58f5db7f9 (diff)
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
Diffstat (limited to 'pkgs/development/tools/cdecl')
-rw-r--r--pkgs/development/tools/cdecl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/cdecl/default.nix b/pkgs/development/tools/cdecl/default.nix
index 7e0a07ad834db..bc44741cffee1 100644
--- a/pkgs/development/tools/cdecl/default.nix
+++ b/pkgs/development/tools/cdecl/default.nix
@@ -1,4 +1,4 @@
-{lib, stdenv, fetchurl, yacc, flex, readline, ncurses, gnused}:
+{lib, stdenv, fetchurl, bison, flex, readline, ncurses, gnused}:
 
 stdenv.mkDerivation {
   name = "cdecl-2.5";
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
     makeFlags="$makeFlags PREFIX=$out BINDIR=$out/bin MANDIR=$out/man1 CATDIR=$out/cat1 CC=$CC";
     mkdir -p $out/bin;
   '';
-  buildInputs = [yacc flex readline ncurses];
+  buildInputs = [bison flex readline ncurses];
 
   meta = {
     description = "Translator English -- C/C++ declarations";