commit
7c1de1f14f
3 changed files with 41 additions and 0 deletions
|
@ -3324,6 +3324,12 @@
|
||||||
email = "info+nix@chmist.com";
|
email = "info+nix@chmist.com";
|
||||||
name = "karolchmist";
|
name = "karolchmist";
|
||||||
};
|
};
|
||||||
|
kayhide = {
|
||||||
|
email = "kayhide@gmail.com";
|
||||||
|
github = "kayhide";
|
||||||
|
githubId = 1730718;
|
||||||
|
name = "Hideaki Kawai";
|
||||||
|
};
|
||||||
kazcw = {
|
kazcw = {
|
||||||
email = "kaz@lambdaverse.org";
|
email = "kaz@lambdaverse.org";
|
||||||
github = "kazcw";
|
github = "kazcw";
|
||||||
|
|
33
pkgs/tools/text/lv/default.nix
Normal file
33
pkgs/tools/text/lv/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4689,6 +4689,8 @@ in
|
||||||
|
|
||||||
ltris = callPackage ../games/ltris { };
|
ltris = callPackage ../games/ltris { };
|
||||||
|
|
||||||
|
lv = callPackage ../tools/text/lv { };
|
||||||
|
|
||||||
lxc = callPackage ../os-specific/linux/lxc { };
|
lxc = callPackage ../os-specific/linux/lxc { };
|
||||||
lxcfs = callPackage ../os-specific/linux/lxcfs { };
|
lxcfs = callPackage ../os-specific/linux/lxcfs { };
|
||||||
lxd = callPackage ../tools/admin/lxd { };
|
lxd = callPackage ../tools/admin/lxd { };
|
||||||
|
|
Loading…
Reference in a new issue