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.
This commit is contained in:
Christian Theune 2015-03-30 22:07:02 +02:00
parent 703e43949d
commit 6daa2462c6
2 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,6 @@ buildGoPackage rec {
description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized"; description = "Replaces Dropbox and BitTorrent Sync with something open, trustworthy and decentralized";
license = with lib.licenses; mit; license = with lib.licenses; mit;
maintainers = with lib.maintainers; [ matejc ]; maintainers = with lib.maintainers; [ matejc ];
platforms = with lib.platforms; linux; platforms = with lib.platforms; unix;
}; };
} }

View File

@ -13,6 +13,6 @@ stdenv.mkDerivation rec {
meta = { meta = {
homepage = http://sethwklein.net/projects/iana-etc/; homepage = http://sethwklein.net/projects/iana-etc/;
description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)"; description = "IANA protocol and port number assignments (/etc/protocols and /etc/services)";
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.unix;
}; };
} }