From 98fdab6aeebdca72d689731d3628a657728aadd9 Mon Sep 17 00:00:00 2001 From: Sandro Date: Tue, 13 Apr 2021 15:49:33 +0200 Subject: [PATCH] remind: remove not required assert --- pkgs/tools/misc/remind/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/tools/misc/remind/default.nix b/pkgs/tools/misc/remind/default.nix index 7b6e3ca1423..293cc136c8c 100644 --- a/pkgs/tools/misc/remind/default.nix +++ b/pkgs/tools/misc/remind/default.nix @@ -7,10 +7,6 @@ , tkremind ? true }: -assert tkremind -> tk != null; -assert tkremind -> tcllib != null; -assert tkremind -> makeWrapper != null; - let inherit (lib) optional optionalString; tclLibraries = lib.optionals tkremind [ tcllib tk ];