calc: remove redundant groff dependency

This commit is contained in:
Ram Kromberg 2016-09-18 23:43:44 +03:00
parent 4ec5e729c4
commit a729d6ee55

@ -1,4 +1,4 @@
{ stdenv, fetchurl, makeWrapper, glibc, readline, ncurses, groff, utillinux }:
{ stdenv, fetchurl, makeWrapper, glibc, readline, ncurses, utillinux }:
with stdenv.lib;
let
@ -7,7 +7,6 @@ let
BINDIR=$out/bin LIBDIR=$out/lib CALC_INCDIR=$out/include/calc CALC_SHAREDIR=$out/share/calc MANDIR=$out/share/man/man1 \
USE_READLINE=-DUSE_READLINE READLINE_LIB=-lreadline READLINE_EXTRAS='-lhistory -lncurses' \
TERMCONTROL=-DUSE_TERMIOS \
NROFF=groff
'';
in
stdenv.mkDerivation rec {
@ -20,7 +19,7 @@ stdenv.mkDerivation rec {
sha256 = "14mnz6smhi3a0rgmwvddk9w3vdisi8khq67i8nqsl47vgs8n1kqg";
};
buildInputs = [ makeWrapper readline ncurses groff utillinux ];
buildInputs = [ makeWrapper readline ncurses utillinux ];
configurePhase = ''
sed -i 's/all: check_include/all:/' Makefile