about summary refs log tree commit diff
path: root/pkgs/applications/editors/vis/default.nix
blob: 8c7cf73f43202f6b70adbf6f6c278a4384dfde72 (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
34
35
36
37
38
39
40
41
42
43
{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper, ncurses, libtermkey, lpeg, lua }:

stdenv.mkDerivation rec {
  name = "vis-nightly-${version}";
  version = "2016-04-15";

  src = fetchFromGitHub {
    sha256 = "0a4gpwniy5r9dpfq51fxjxxnxavdjv8x76w9bbjnbnh8n63p3sj7";
    rev = "472c559a273d3c7b0f5ee92260c5544bc3d74576";
    repo = "vis";
    owner = "martanne";
  };

  nativeBuildInputs = [ makeWrapper ];

  buildInputs = [
     unzip
     pkgconfig
     ncurses
     libtermkey
     lua
     lpeg
  ];

  LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;";
  LUA_PATH="${lpeg}/share/lua/${lua.luaversion}/?.lua";

  postInstall = ''
    echo wrapping $out/bin/vis with runtime environment
    wrapProgram $out/bin/vis \
      --prefix LUA_CPATH : "${lpeg}/lib/lua/${lua.luaversion}/?.so" \
      --prefix LUA_PATH : "${lpeg}/share/lua/${lua.luaversion}/?.lua" \
      --prefix VIS_PATH : "$out/share/vis"
  '';

  meta = {
    description = "A vim like editor";
    homepage = http://github.com/martanne/vis;
    license = stdenv.lib.licenses.isc;
    maintainers = [ stdenv.lib.maintainers.vrthra ];
  };
}