From c152e7c5d9db14495c28cfeb8073ea91880b5814 Mon Sep 17 00:00:00 2001 From: vinymeuh Date: Sun, 30 Jul 2017 09:18:12 +0200 Subject: [PATCH] most supported on all unix, not only gnu --- pkgs/tools/misc/most/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/most/default.nix b/pkgs/tools/misc/most/default.nix index 1c1def9b8a8..107aa094dd7 100644 --- a/pkgs/tools/misc/most/default.nix +++ b/pkgs/tools/misc/most/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { -e "s|/bin/cp|cp|" \ -e "s|/bin/rm|rm|" ''; - + configureFlags = "--with-slang=${slang.dev}"; buildInputs = [ slang ncurses ]; @@ -28,6 +28,6 @@ stdenv.mkDerivation { ''; homepage = http://www.jedsoft.org/most/index.html; license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.gnu; # random choice + platforms = stdenv.lib.platforms.unix; }; }