about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ply
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/os-specific/linux/ply
parent8e1db896a39cbcae79924534a6e383c58f5db7f9 (diff)
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
Diffstat (limited to 'pkgs/os-specific/linux/ply')
-rw-r--r--pkgs/os-specific/linux/ply/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/ply/default.nix b/pkgs/os-specific/linux/ply/default.nix
index 2844badc7305b..e62716e479679 100644
--- a/pkgs/os-specific/linux/ply/default.nix
+++ b/pkgs/os-specific/linux/ply/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, kernel, fetchFromGitHub, autoreconfHook, yacc, flex, p7zip, rsync }:
+{ lib, stdenv, kernel, fetchFromGitHub, autoreconfHook, bison, flex, p7zip, rsync }:
 
 assert kernel != null -> lib.versionAtLeast kernel.version "4.0";
 
@@ -7,7 +7,7 @@ let
 in stdenv.mkDerivation {
   pname = "ply";
   inherit version;
-  nativeBuildInputs = [ autoreconfHook flex yacc p7zip rsync ];
+  nativeBuildInputs = [ autoreconfHook flex bison p7zip rsync ];
 
   src = fetchFromGitHub {
     owner = "iovisor";