tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
a2ps: fix build
Ram Kromberg
9 years ago
1b0163ea
2cdac99d
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
a2ps
default.nix
+2
-2
pkgs/tools/text/a2ps/default.nix
···
1
1
-
{ stdenv, fetchurl, fetchpatch, libpaper, gperf, file, perl }:
1
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
30
-
nativeBuildInputs = [ file perl ];
30
30
+
nativeBuildInputs = [ autoconf file bison perl ];
31
31
buildInputs = [ libpaper gperf ];
32
32
33
33
meta = with stdenv.lib; {