Merge pull request #27762 from vinymeuh/fix_most

fix most: supported on all unix, not only gnu
This commit is contained in:
Frederik Rietdijk 2017-07-30 10:20:05 +02:00 committed by GitHub
commit a82cc75cac
1 changed files with 2 additions and 2 deletions

View File

@ -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;
};
}