summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science
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/applications/science
parent8e1db896a39cbcae79924534a6e383c58f5db7f9 (diff)
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/electronics/tkgate/1.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/electronics/tkgate/1.x.nix b/pkgs/applications/science/electronics/tkgate/1.x.nix
index 9bb04a3189ef..5a46e8f63840 100644
--- a/pkgs/applications/science/electronics/tkgate/1.x.nix
+++ b/pkgs/applications/science/electronics/tkgate/1.x.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, tcl, tk, libX11, glibc, which, yacc, flex, imake, xorgproto, gccmakedep }:
+{ lib, stdenv, fetchurl, tcl, tk, libX11, glibc, which, bison, flex, imake, xorgproto, gccmakedep }:
let
libiconvInc = lib.optionalString stdenv.isLinux "${glibc.dev}/include";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "1pqywkidfpdbj18i03h97f4cimld4fb3mqfy8jjsxs12kihm18fs";
};
- nativeBuildInputs = [ which yacc flex imake gccmakedep ];
+ nativeBuildInputs = [ which bison flex imake gccmakedep ];
buildInputs = [ tcl tk libX11 xorgproto ];
dontUseImakeConfigure = true;