about summary refs log tree commit diff
path: root/pkgs/tools/text/lv/default.nix
blob: 48ed867c8e4c7fb5f3653fcb0f820b18a2f9f1fb (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
{ lib, stdenv, fetchurl, ncurses }:

stdenv.mkDerivation rec {
  pname = "lv";
  version = "4.51";

  src = fetchurl {
    url = "mirror://debian/pool/main/l/${pname}/${pname}_${version}.orig.tar.gz";
    sha256 = "0yf3idz1qspyff1if41xjpqqcaqa8q8icslqlnz0p9dj36gmm5l3";
  };

  makeFlags = [ "prefix=${placeholder "out"}" ];

  buildInputs = [ ncurses ];

  configurePhase = ''
    mkdir -p build
    cd build
    ../src/configure
  '';

  preInstall = ''
    mkdir -p $out/bin
  '';

  meta = with lib; {
    description = "Powerful multi-lingual file viewer / grep";
    homepage = "https://web.archive.org/web/20160310122517/www.ff.iij4u.or.jp/~nrt/lv/";
    license = licenses.gpl2;
    platforms = with platforms; linux ++ darwin;
    maintainers = with maintainers; [ kayhide ];
  };
}