about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2016-09-29 20:50:16 +0200
committerGitHub <noreply@github.com>2016-09-29 20:50:16 +0200
commit9cd8f032c5a3da30c1ceab38e4911e038b9084e0 (patch)
tree361e068f2d04101b5515cd6d5cc2945e52c5a1ab /pkgs
parentfe9e5f9f55c461d6722111e5aaa4ccfb2d13ca19 (diff)
parent829cbb8c86a449e0644e5205cb8458a388b601e4 (diff)
downloadnixlib-9cd8f032c5a3da30c1ceab38e4911e038b9084e0.tar
nixlib-9cd8f032c5a3da30c1ceab38e4911e038b9084e0.tar.gz
nixlib-9cd8f032c5a3da30c1ceab38e4911e038b9084e0.tar.bz2
nixlib-9cd8f032c5a3da30c1ceab38e4911e038b9084e0.tar.lz
nixlib-9cd8f032c5a3da30c1ceab38e4911e038b9084e0.tar.xz
nixlib-9cd8f032c5a3da30c1ceab38e4911e038b9084e0.tar.zst
nixlib-9cd8f032c5a3da30c1ceab38e4911e038b9084e0.zip
Merge pull request #18990 from justinweiss/syncthing-darwin
syncthing: enable the darwin platform
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/syncthing/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 82e0cce47d66..49b969e8f6bf 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
     description = "Open Source Continuous File Synchronization";
     license = stdenv.lib.licenses.mpl20;
     maintainers = with stdenv.lib.maintainers; [ pshendry joko peterhoeg ];
-    platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
+    platforms = stdenv.lib.platforms.unix;
   };
 }