3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #19483 from RamKromberg/fix/a2ps

a2ps: fix build
This commit is contained in:
Graham Christensen 2016-10-15 13:18:29 -04:00 committed by GitHub
commit bd2ad683d3

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, libpaper, gperf, file, perl }:
{ stdenv, fetchurl, fetchpatch, autoconf, bison, libpaper, gperf, file, perl }:
stdenv.mkDerivation rec {
name = "a2ps-4.14";
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
substituteInPlace tests/defs.in --replace "/bin/rm" "rm"
'';
nativeBuildInputs = [ file perl ];
nativeBuildInputs = [ autoconf file bison perl ];
buildInputs = [ libpaper gperf ];
meta = with stdenv.lib; {