pcalc: build with bison3

This commit is contained in:
Luka Blaskovic 2020-01-06 11:09:51 +00:00
parent 55fc8e128b
commit 991a7e041f

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, bison2, flex }: { stdenv, fetchgit, bison, flex }:
with stdenv.lib; with stdenv.lib;
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
}; };
makeFlags = [ "DESTDIR= BINDIR=$(out)/bin" ]; makeFlags = [ "DESTDIR= BINDIR=$(out)/bin" ];
buildInputs = [ bison2 flex ]; buildInputs = [ bison flex ];
meta = { meta = {
homepage = http://pcalc.sourceforge.net/; homepage = http://pcalc.sourceforge.net/;