From 6daa2462c63f0682ea3e816ab4ed828f8576382c Mon Sep 17 00:00:00 2001 From: Christian Theune Date: Mon, 30 Mar 2015 22:07:02 +0200 Subject: [PATCH] Enable syncthing for Mac OS X. Also requires enabling iana-etc. I'm shooting for "unix" platforms which seems reasonable. Not sure why this was restricted to linux originally -- the history doesn't tell. --- pkgs/applications/networking/syncthing/default.nix | 2 +- pkgs/data/misc/iana-etc/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix index a96fc5063d8b..430ab70caa14 100644 --- a/pkgs/applications/networking/syncthing/default.nix +++ b/pkgs/applications/networking/syncthing/default.nix @@ -27,6 +27,6 @@ buildGoPackage rec { description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized"; license = with lib.licenses; mit; maintainers = with lib.maintainers; [ matejc ]; - platforms = with lib.platforms; linux; + platforms = with lib.platforms; unix; }; } diff --git a/pkgs/data/misc/iana-etc/default.nix b/pkgs/data/misc/iana-etc/default.nix index cc676d0b35dd..6adb45758392 100644 --- a/pkgs/data/misc/iana-etc/default.nix +++ b/pkgs/data/misc/iana-etc/default.nix @@ -13,6 +13,6 @@ stdenv.mkDerivation rec { meta = { homepage = http://sethwklein.net/projects/iana-etc/; description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)"; - platforms = stdenv.lib.platforms.linux; + platforms = stdenv.lib.platforms.unix; }; }