summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/lv
diff options
context:
space:
mode:
authorkayhide <kayhide@gmail.com>2019-08-15 23:19:45 +0900
committerkayhide <kayhide@gmail.com>2019-09-08 11:54:16 +0900
commit2e68d1e54d58e1cd3fed65ebcdbba7395ab7df8d (patch)
treed5ab9b8ec9e6f9ebf309d91ea6fc622990782d78 /pkgs/tools/text/lv
parentb172c449a9a9d348fecb3a39fbbbc233de722873 (diff)
lv: init at 4.51
Diffstat (limited to 'pkgs/tools/text/lv')
-rw-r--r--pkgs/tools/text/lv/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/tools/text/lv/default.nix b/pkgs/tools/text/lv/default.nix
new file mode 100644
index 000000000000..3e96858f9c9c
--- /dev/null
+++ b/pkgs/tools/text/lv/default.nix
@@ -0,0 +1,33 @@
+{ 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 stdenv.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 ];
+ };
+}