summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-10-20 23:03:45 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-10-20 23:04:10 +0200
commit4d5b89300296951f207ad2fcad35d1596fe7a319 (patch)
treec334e4de0e8264c9897deb2ade31aaade779ac0b /pkgs/tools/text
parent171bcc5274b41226e5943247db1afb2e7559e23e (diff)
parent4094d63dea7fafb8529ceaaa195f8e81e5dbe8a3 (diff)
downloadnixlib-4d5b89300296951f207ad2fcad35d1596fe7a319.tar
nixlib-4d5b89300296951f207ad2fcad35d1596fe7a319.tar.gz
nixlib-4d5b89300296951f207ad2fcad35d1596fe7a319.tar.bz2
nixlib-4d5b89300296951f207ad2fcad35d1596fe7a319.tar.lz
nixlib-4d5b89300296951f207ad2fcad35d1596fe7a319.tar.xz
nixlib-4d5b89300296951f207ad2fcad35d1596fe7a319.tar.zst
nixlib-4d5b89300296951f207ad2fcad35d1596fe7a319.zip
Merge #19081: gnome-3.22
Also master commits are brought in.
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/a2ps/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/a2ps/default.nix b/pkgs/tools/text/a2ps/default.nix
index e38de5e6bd89..2535354aa229 100644
--- a/pkgs/tools/text/a2ps/default.nix
+++ b/pkgs/tools/text/a2ps/default.nix
@@ -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; {