summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Childs <lorne@cons.org.nz>2018-01-10 01:16:40 +0900
committerAndrew Childs <lorne@cons.org.nz>2018-01-10 01:16:40 +0900
commita1b03ccb6be82b736d73d6ac0ff700c4bf008ce0 (patch)
treee6d346148a28c2bb930128c19ce5a045eecb6a5f
parentdd86923d3aa42860a952176f66d6463a67d62da9 (diff)
downloadnixpkgs-a1b03ccb6be82b736d73d6ac0ff700c4bf008ce0.tar
nixpkgs-a1b03ccb6be82b736d73d6ac0ff700c4bf008ce0.tar.gz
nixpkgs-a1b03ccb6be82b736d73d6ac0ff700c4bf008ce0.tar.bz2
nixpkgs-a1b03ccb6be82b736d73d6ac0ff700c4bf008ce0.tar.lz
nixpkgs-a1b03ccb6be82b736d73d6ac0ff700c4bf008ce0.tar.xz
nixpkgs-a1b03ccb6be82b736d73d6ac0ff700c4bf008ce0.tar.zst
nixpkgs-a1b03ccb6be82b736d73d6ac0ff700c4bf008ce0.zip
wdiff: Widen meta.platforms to unix
This package builds and works fine on macOS, and probably other
unix-likes.
-rw-r--r--pkgs/tools/text/wdiff/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/wdiff/default.nix b/pkgs/tools/text/wdiff/default.nix
index aeef86331f3..f4edc02b9fa 100644
--- a/pkgs/tools/text/wdiff/default.nix
+++ b/pkgs/tools/text/wdiff/default.nix
@@ -15,6 +15,6 @@ stdenv.mkDerivation rec {
     description = "Comparing files on a word by word basis";
     license = stdenv.lib.licenses.gpl3Plus;
     maintainers = [ stdenv.lib.maintainers.eelco ];
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.unix;
   };
 }