From 5d8ec2adc190abdd8463b41ec776bdbd1b4fd6d9 Mon Sep 17 00:00:00 2001 From: Rick van Schijndel Date: Thu, 19 May 2022 21:35:58 +0200 Subject: [PATCH] bakelite: only supports linux --- pkgs/tools/backup/bakelite/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/backup/bakelite/default.nix b/pkgs/tools/backup/bakelite/default.nix index e022ba942d28..c67741b06869 100644 --- a/pkgs/tools/backup/bakelite/default.nix +++ b/pkgs/tools/backup/bakelite/default.nix @@ -28,6 +28,7 @@ stdenv.mkDerivation rec { description = "Incremental backup with strong cryptographic confidentality"; license = licenses.gpl2; maintainers = with maintainers; [ mvs ]; - platforms = platforms.unix; + # no support for Darwin (yet: https://github.com/richfelker/bakelite/pull/5) + platforms = platforms.linux; }; }