summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-09-19 13:00:23 +0200
committerGitHub <noreply@github.com>2016-09-19 13:00:23 +0200
commit0211fe0c654431d2b279c388683d1375c37c3cf2 (patch)
treeebbeb2788494e0cdb5092960b05de324da043f58
parent6fe5b7a2e7dfd2ab84bf7d99c30fdcb85c0abe68 (diff)
parenta729d6ee559fec4305428eca8b29198443b5d9e3 (diff)
downloadnixpkgs-0211fe0c654431d2b279c388683d1375c37c3cf2.tar
nixpkgs-0211fe0c654431d2b279c388683d1375c37c3cf2.tar.gz
nixpkgs-0211fe0c654431d2b279c388683d1375c37c3cf2.tar.bz2
nixpkgs-0211fe0c654431d2b279c388683d1375c37c3cf2.tar.lz
nixpkgs-0211fe0c654431d2b279c388683d1375c37c3cf2.tar.xz
nixpkgs-0211fe0c654431d2b279c388683d1375c37c3cf2.tar.zst
nixpkgs-0211fe0c654431d2b279c388683d1375c37c3cf2.zip
Merge pull request #18748 from RamKromberg/fix/calc
calc: remove redundant groff dependency
-rw-r--r--pkgs/applications/science/math/calc/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/science/math/calc/default.nix b/pkgs/applications/science/math/calc/default.nix
index b9db4174c09..19f769e4365 100644
--- a/pkgs/applications/science/math/calc/default.nix
+++ b/pkgs/applications/science/math/calc/default.nix
@@ -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