From f6903292fc2b7e2f648f85001497e4182bce1f95 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Fri, 12 Aug 2016 00:10:17 -0500 Subject: [PATCH] tlsdate: dont build on darwin There was a typo previously adding these in. --- pkgs/tools/networking/tlsdate/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/tlsdate/default.nix b/pkgs/tools/networking/tlsdate/default.nix index 66ead809d0bb..efea10eaa4da 100644 --- a/pkgs/tools/networking/tlsdate/default.nix +++ b/pkgs/tools/networking/tlsdate/default.nix @@ -46,6 +46,6 @@ stdenv.mkDerivation rec { description = "Secure parasitic rdate replacement"; homepage = https://github.com/ioerror/tlsdate; maintainers = with maintainers; [ tv fpletz ]; - platforms = platforms.allBut [ "darwin" ]; + platforms = platforms.allBut platforms.darwin; }; }