2016-09-17 04:16:25 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, makeWrapper, makeDesktopItem
|
2016-07-17 20:57:32 +00:00
|
|
|
, ncurses, libtermkey, lpeg, lua
|
|
|
|
, acl ? null, libselinux ? null
|
|
|
|
}:
|
2016-04-15 18:11:46 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-26 16:09:02 +00:00
|
|
|
name = "vis-${version}";
|
|
|
|
version = "0.3";
|
2016-04-15 18:11:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-03-26 16:09:02 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "13xyyq30dg66v4azl2jvlyfyglxmc3r9p7p87vrganq0p6lmb0bk";
|
2016-04-15 18:11:46 +00:00
|
|
|
repo = "vis";
|
|
|
|
owner = "martanne";
|
|
|
|
};
|
|
|
|
|
2016-09-17 04:16:25 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
2016-04-15 18:11:46 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2016-07-17 20:57:32 +00:00
|
|
|
ncurses
|
|
|
|
libtermkey
|
|
|
|
lua
|
|
|
|
lpeg
|
2016-10-01 20:47:19 +00:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [
|
2016-07-17 20:57:32 +00:00
|
|
|
acl
|
|
|
|
libselinux
|
2016-04-15 18:11:46 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;";
|
|
|
|
LUA_PATH="${lpeg}/share/lua/${lua.luaversion}/?.lua";
|
|
|
|
|
|
|
|
postInstall = ''
|
2016-09-17 04:16:25 +00:00
|
|
|
mkdir -p "$out/share/applications"
|
|
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
2016-04-15 18:11:46 +00:00
|
|
|
echo wrapping $out/bin/vis with runtime environment
|
|
|
|
wrapProgram $out/bin/vis \
|
2017-03-26 22:18:05 +00:00
|
|
|
--prefix LUA_CPATH ';' "${lpeg}/lib/lua/${lua.luaversion}/?.so" \
|
|
|
|
--prefix LUA_PATH ';' "${lpeg}/share/lua/${lua.luaversion}/?.lua" \
|
2016-09-17 04:16:25 +00:00
|
|
|
--prefix VIS_PATH : "\$HOME/.config:$out/share/vis"
|
2016-04-15 18:11:46 +00:00
|
|
|
'';
|
|
|
|
|
2016-09-17 04:16:25 +00:00
|
|
|
desktopItem = makeDesktopItem rec {
|
|
|
|
name = "vis";
|
|
|
|
exec = "vis %U";
|
|
|
|
type = "Application";
|
|
|
|
icon = "accessories-text-editor";
|
|
|
|
comment = meta.description;
|
|
|
|
desktopName = "vis";
|
|
|
|
genericName = "Text editor";
|
|
|
|
categories = stdenv.lib.concatStringsSep ";" [
|
|
|
|
"Application" "Development" "IDE"
|
|
|
|
];
|
|
|
|
mimeType = stdenv.lib.concatStringsSep ";" [
|
|
|
|
"text/plain" "application/octet-stream"
|
|
|
|
];
|
|
|
|
startupNotify = "false";
|
|
|
|
terminal = "true";
|
|
|
|
};
|
|
|
|
|
2016-07-17 20:57:32 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-04-15 18:11:46 +00:00
|
|
|
description = "A vim like editor";
|
2017-08-17 21:53:40 +00:00
|
|
|
homepage = https://github.com/martanne/vis;
|
2016-07-17 20:57:32 +00:00
|
|
|
license = licenses.isc;
|
2016-09-17 04:16:25 +00:00
|
|
|
maintainers = with maintainers; [ vrthra ramkromberg ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.unix;
|
2016-04-15 18:11:46 +00:00
|
|
|
};
|
|
|
|
}
|