From a6996cbbeb05b66ff231880125ca95f0fbcf24b1 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Sat, 27 Jul 2024 01:50:11 +0200 Subject: [PATCH] remind: format using nixfmt --- pkgs/by-name/re/remind/package.nix | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/re/remind/package.nix b/pkgs/by-name/re/remind/package.nix index 27f245538989..4847c32c0cc8 100644 --- a/pkgs/by-name/re/remind/package.nix +++ b/pkgs/by-name/re/remind/package.nix @@ -1,10 +1,11 @@ -{ lib -, stdenv -, fetchurl -, tk -, tcllib -, tcl -, tkremind ? true +{ + lib, + stdenv, + fetchurl, + tk, + tcllib, + tcl, + tkremind ? true, }: tcl.mkTclDerivation rec { @@ -16,7 +17,10 @@ tcl.mkTclDerivation rec { hash = "sha256-XxVjAV3TGDPI8XaFXXSminsMffq8m8ljw68YMIC2lYg="; }; - propagatedBuildInputs = lib.optionals tkremind [ tcllib tk ]; + propagatedBuildInputs = lib.optionals tkremind [ + tcllib + tk + ]; postPatch = lib.optionalString tkremind '' # NOTA BENE: The path to rem2pdf is replaced in tkremind for future use @@ -42,7 +46,10 @@ tcl.mkTclDerivation rec { homepage = "https://dianne.skoll.ca/projects/remind/"; description = "Sophisticated calendar and alarm program for the console"; license = licenses.gpl2Only; - maintainers = with maintainers; [ raskin kovirobi ]; + maintainers = with maintainers; [ + raskin + kovirobi + ]; mainProgram = "remind"; platforms = platforms.unix; };