summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2016-08-12 00:10:17 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2016-08-16 19:25:45 +0000
commitf6903292fc2b7e2f648f85001497e4182bce1f95 (patch)
tree392cfa00621c0448254465d23a95dd94b5709c54 /pkgs/tools/networking
parent94ad63a1aafaacf65b3296be35831931cb757544 (diff)
downloadnixlib-f6903292fc2b7e2f648f85001497e4182bce1f95.tar
nixlib-f6903292fc2b7e2f648f85001497e4182bce1f95.tar.gz
nixlib-f6903292fc2b7e2f648f85001497e4182bce1f95.tar.bz2
nixlib-f6903292fc2b7e2f648f85001497e4182bce1f95.tar.lz
nixlib-f6903292fc2b7e2f648f85001497e4182bce1f95.tar.xz
nixlib-f6903292fc2b7e2f648f85001497e4182bce1f95.tar.zst
nixlib-f6903292fc2b7e2f648f85001497e4182bce1f95.zip
tlsdate: dont build on darwin
There was a typo previously adding these in.
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/tlsdate/default.nix2
1 files changed, 1 insertions, 1 deletions
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;
   };
 }