summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-08 21:44:15 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:29 +0000
commit8aeec440822e5d16468c0758980cd0297ff06438 (patch)
treef838f635f17c530577b22f1d74798271564587c0
parentc2d335fb07621c94e56614c69be91940ad31f69a (diff)
downloadnixpkgs-8aeec440822e5d16468c0758980cd0297ff06438.tar
nixpkgs-8aeec440822e5d16468c0758980cd0297ff06438.tar.gz
nixpkgs-8aeec440822e5d16468c0758980cd0297ff06438.tar.bz2
nixpkgs-8aeec440822e5d16468c0758980cd0297ff06438.tar.lz
nixpkgs-8aeec440822e5d16468c0758980cd0297ff06438.tar.xz
nixpkgs-8aeec440822e5d16468c0758980cd0297ff06438.tar.zst
nixpkgs-8aeec440822e5d16468c0758980cd0297ff06438.zip
wdiff: use checkInputs, fix tests
-rw-r--r--pkgs/tools/text/wdiff/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/text/wdiff/default.nix b/pkgs/tools/text/wdiff/default.nix
index f4edc02b9fa..df2ef215069 100644
--- a/pkgs/tools/text/wdiff/default.nix
+++ b/pkgs/tools/text/wdiff/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, texinfo }:
+{ stdenv, fetchurl, texinfo, which }:
 
 stdenv.mkDerivation rec {
   name = "wdiff-1.2.2";
@@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ texinfo ];
 
+  checkInputs = [ which ];
+
   meta = {
     homepage = http://www.gnu.org/software/wdiff/;
     description = "Comparing files on a word by word basis";