summary refs log tree commit diff
path: root/pkgs/applications/misc/xmove/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/xmove/default.nix')
-rw-r--r--pkgs/applications/misc/xmove/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/misc/xmove/default.nix b/pkgs/applications/misc/xmove/default.nix
index a4427c11f6a..32729d57475 100644
--- a/pkgs/applications/misc/xmove/default.nix
+++ b/pkgs/applications/misc/xmove/default.nix
@@ -11,5 +11,8 @@ stdenv.mkDerivation {
   installPhase = "cd xmove; make install install.man MANDIR=\${out}/man/man1 BINDIR=\${out}/bin; cd .. ; cd xmovectrl ; make install install.man MANDIR=\${out}/man/man1 BINDIR=\${out}/bin; cd ..";
 
   buildInputs = [libX11 libXi imake xauth libXau];
-}
 
+  meta = {
+    platforms = stdenv.lib.platforms.linux;
+  };
+}