summary refs log tree commit diff
path: root/pkgs/tools/misc/most/default.nix
blob: b97d8f0b71990f007b23e39a18132a59b5f8cba5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, slang, ncurses }:

stdenv.mkDerivation {
  name = "most-5.0.0";

  src = fetchurl {
    url = ftp://space.mit.edu/pub/davis/most/most-5.0.0.tar.bz2;
    sha256 = "1f5x7rvjg89b5klfqs1gb91jmbnd3fy08d8rwgdvgg0plqkxr7ja";
  };

  preConfigure = ''
    sed -i -e "s|-ltermcap|-lncurses|" configure
    sed -i autoconf/Makefile.in src/Makefile.in \
      -e "s|/bin/cp|cp|"  \
      -e "s|/bin/rm|rm|"
  '';
  
  configureFlags = "--with-slang=${slang}";

  buildInputs = [ slang ncurses ];

  meta = {
    description = "A terminal pager similar to 'more' and 'less'";
    longDescription = ''
      MOST is a powerful paging program for Unix, VMS, MSDOS, and win32
      systems. Unlike other well-known paging programs most supports multiple
      windows and can scroll left and right. Why settle for less?
    '';
    homepage = http://www.jedsoft.org/most/index.html;
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.gnu; # random choice
  };
}