summary refs log tree commit diff
path: root/pkgs/tools/text/tab/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-06-19 04:21:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-06-19 04:21:00 -0500
commitc193d3b494b669c7c0c0833f242c42650ecbbcf0 (patch)
tree69c99cfb52e9a94b4192ab329529ec6671940fbc /pkgs/tools/text/tab/default.nix
parentc45e09039b412fe81ad9828af59431f5dfa20bc9 (diff)
downloadnixpkgs-c193d3b494b669c7c0c0833f242c42650ecbbcf0.tar
nixpkgs-c193d3b494b669c7c0c0833f242c42650ecbbcf0.tar.gz
nixpkgs-c193d3b494b669c7c0c0833f242c42650ecbbcf0.tar.bz2
nixpkgs-c193d3b494b669c7c0c0833f242c42650ecbbcf0.tar.lz
nixpkgs-c193d3b494b669c7c0c0833f242c42650ecbbcf0.tar.xz
nixpkgs-c193d3b494b669c7c0c0833f242c42650ecbbcf0.tar.zst
nixpkgs-c193d3b494b669c7c0c0833f242c42650ecbbcf0.zip
tab: enable on darwin
Diffstat (limited to 'pkgs/tools/text/tab/default.nix')
-rw-r--r--pkgs/tools/text/tab/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/tab/default.nix b/pkgs/tools/text/tab/default.nix
index cd3bfbe85d8..8a80c7ad10e 100644
--- a/pkgs/tools/text/tab/default.nix
+++ b/pkgs/tools/text/tab/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   checkInputs = [ python3 ];
 
-  doCheck = true;
+  doCheck = !stdenv.isDarwin;
 
   preCheck = ''
     substituteInPlace Makefile --replace "python2 go2.py" "python go.py"
@@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
     homepage    = "https://tkatchev.bitbucket.io/tab/";
     license     = licenses.boost;
     maintainers = with maintainers; [ mstarzyk ];
-    platforms   = with platforms; linux;
+    platforms   = with platforms; unix;
   };
 }