nixpkgs/pkgs/applications/editors/vis/default.nix

72 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, makeDesktopItem
2016-07-17 20:57:32 +00:00
, ncurses, libtermkey, lpeg, lua
, acl ? null, libselinux ? null
}:
stdenv.mkDerivation rec {
pname = "vis";
2020-12-11 05:12:20 +00:00
version = "0.7";
src = fetchFromGitHub {
2017-03-26 16:09:02 +00:00
rev = "v${version}";
2020-12-11 05:12:20 +00:00
sha256 = "1g05ncsnk57kcqm9wsv6sz8b24kyzj8r5rfpa1wfwj8qkjzx3vji";
repo = "vis";
owner = "martanne";
};
nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [
2016-07-17 20:57:32 +00:00
ncurses
libtermkey
lua
lpeg
2021-01-15 13:21:58 +00:00
] ++ lib.optionals stdenv.isLinux [
2016-07-17 20:57:32 +00:00
acl
libselinux
];
2018-03-23 07:58:34 +00:00
postPatch = ''
patchShebangs ./configure
'';
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
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" \
2016-09-17 04:16:25 +00:00
--prefix VIS_PATH : "\$HOME/.config:$out/share/vis"
'';
2019-08-13 21:52:01 +00:00
desktopItem = makeDesktopItem {
2016-09-17 04:16:25 +00:00
name = "vis";
exec = "vis %U";
type = "Application";
icon = "accessories-text-editor";
comment = meta.description;
desktopName = "vis";
genericName = "Text editor";
2021-01-15 13:21:58 +00:00
categories = lib.concatStringsSep ";" [
2016-09-17 04:16:25 +00:00
"Application" "Development" "IDE"
];
2021-01-15 13:21:58 +00:00
mimeType = lib.concatStringsSep ";" [
2016-09-17 04:16:25 +00:00
"text/plain" "application/octet-stream"
];
startupNotify = "false";
terminal = "true";
};
meta = with lib; {
description = "A vim like editor";
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 ];
platforms = platforms.unix;
};
}