summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-04 19:12:45 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-04 23:31:48 +0000
commitbb2b4587c69bab5adbb7353c621270cc75e1721c (patch)
tree0f5dcc9b24793a54d64812636d8858d9ad265061 /pkgs/applications/editors
parent0bb47027abfcbdb6a05c0a8a8eba265c4307bdaa (diff)
downloadnixlib-bb2b4587c69bab5adbb7353c621270cc75e1721c.tar
nixlib-bb2b4587c69bab5adbb7353c621270cc75e1721c.tar.gz
nixlib-bb2b4587c69bab5adbb7353c621270cc75e1721c.tar.bz2
nixlib-bb2b4587c69bab5adbb7353c621270cc75e1721c.tar.lz
nixlib-bb2b4587c69bab5adbb7353c621270cc75e1721c.tar.xz
nixlib-bb2b4587c69bab5adbb7353c621270cc75e1721c.tar.zst
nixlib-bb2b4587c69bab5adbb7353c621270cc75e1721c.zip
ed: enable check on darwin
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/ed/default.nix11
1 files changed, 1 insertions, 10 deletions
diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix
index b611d3319d7a..6c2f1ea2003c 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -13,16 +13,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ lzip ];
 
-  /* FIXME: Tests currently fail on Darwin:
-
-       building test scripts for ed-1.5...
-       testing ed-1.5...
-       *** Output e1.o of script e1.ed is incorrect ***
-       *** Output r3.o of script r3.ed is incorrect ***
-       make: *** [check] Error 127
-
-    */
-  doCheck = !(hostPlatform.isDarwin || hostPlatform != buildPlatform);
+  doCheck = hostPlatform == buildPlatform;
 
   meta = {
     description = "An implementation of the standard Unix editor";