summary refs log tree commit diff
path: root/pkgs/applications/misc/alacritty/default.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-07-29 20:43:20 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-07-29 20:43:20 +0100
commit06bcac90bb156dd732e0f233e9aeea923fb67a92 (patch)
tree39460aa4f9c6b6501d6bd71d59d0276d97945dcc /pkgs/applications/misc/alacritty/default.nix
parent9aafecd28bfe93cb012d6274f001c8dedaa4d937 (diff)
downloadnixpkgs-06bcac90bb156dd732e0f233e9aeea923fb67a92.tar
nixpkgs-06bcac90bb156dd732e0f233e9aeea923fb67a92.tar.gz
nixpkgs-06bcac90bb156dd732e0f233e9aeea923fb67a92.tar.bz2
nixpkgs-06bcac90bb156dd732e0f233e9aeea923fb67a92.tar.lz
nixpkgs-06bcac90bb156dd732e0f233e9aeea923fb67a92.tar.xz
nixpkgs-06bcac90bb156dd732e0f233e9aeea923fb67a92.tar.zst
nixpkgs-06bcac90bb156dd732e0f233e9aeea923fb67a92.zip
alacritty: only build on linux
the darwin build fails at the moment and since we are now using patchelf
it would not build anyway.
Diffstat (limited to 'pkgs/applications/misc/alacritty/default.nix')
-rw-r--r--pkgs/applications/misc/alacritty/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/alacritty/default.nix b/pkgs/applications/misc/alacritty/default.nix
index 4f072c45144..e84ee7ee16b 100644
--- a/pkgs/applications/misc/alacritty/default.nix
+++ b/pkgs/applications/misc/alacritty/default.nix
@@ -62,6 +62,6 @@ buildRustPackage rec {
     homepage = https://github.com/jwilm/alacritty;
     license = with licenses; [ asl20 ];
     maintainers = with maintainers; [ mic92 ];
-    platforms = platforms.all;
+    platforms = platforms.linux;
   };
 }