calc: replace util-linux with unixtools.col

This commit is contained in:
Weijia Wang 2023-06-15 14:25:40 +03:00
parent 6fe245d92c
commit 169cb59498

View file

@ -4,7 +4,7 @@
, makeWrapper , makeWrapper
, ncurses , ncurses
, readline , readline
, util-linux , unixtools
, enableReadline ? true , enableReadline ? true
}: }:
@ -28,12 +28,10 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ nativeBuildInputs = [
makeWrapper makeWrapper
unixtools.col
]; ];
buildInputs = [ buildInputs = lib.optionals enableReadline [
util-linux
]
++ lib.optionals enableReadline [
ncurses ncurses
readline readline
]; ];