Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

a2ps: fix build

+2 -2
+2 -2
pkgs/tools/text/a2ps/default.nix
··· 1 - { stdenv, fetchurl, fetchpatch, libpaper, gperf, file, perl }: 1 + { stdenv, fetchurl, fetchpatch, autoconf, bison, libpaper, gperf, file, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "a2ps-4.14"; ··· 27 27 substituteInPlace tests/defs.in --replace "/bin/rm" "rm" 28 28 ''; 29 29 30 - nativeBuildInputs = [ file perl ]; 30 + nativeBuildInputs = [ autoconf file bison perl ]; 31 31 buildInputs = [ libpaper gperf ]; 32 32 33 33 meta = with stdenv.lib; {