From 9d830541990252e859c00c9b5a7579bc9305c79c Mon Sep 17 00:00:00 2001 From: Anselm Schüler Date: Sun, 27 Aug 2023 13:51:23 +0200 Subject: nano: add file as a dependency to allow libmagic usage --- pkgs/applications/editors/nano/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/editors/nano') diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 5b51f9563c390..cbb53a8f99918 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, fetchFromGitHub, ncurses, texinfo, writeScript , common-updater-scripts, git, nix, nixfmt, coreutils, gnused, callPackage -, gettext ? null, enableNls ? true, enableTiny ? false }: +, file ? null, gettext ? null, enableNls ? true, enableTiny ? false }: assert enableNls -> (gettext != null); @@ -22,7 +22,7 @@ in stdenv.mkDerivation rec { }; nativeBuildInputs = [ texinfo ] ++ lib.optional enableNls gettext; - buildInputs = [ ncurses ]; + buildInputs = [ ncurses ] ++ lib.optional (!enableTiny) file; outputs = [ "out" "info" ]; -- cgit 1.4.1