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

71 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper, makeDesktopItem
2021-09-11 22:58:18 +01:00
, ncurses, libtermkey, lua
2016-07-17 21:57:32 +01:00
, acl ? null, libselinux ? null
}:
2021-09-11 22:58:18 +01:00
let
luaEnv = lua.withPackages(ps: [ ps.lpeg ]);
2021-09-11 22:58:18 +01:00
in
stdenv.mkDerivation rec {
pname = "vis";
2020-12-11 05:12:20 +00:00
version = "0.7";
src = fetchFromGitHub {
2017-03-26 17:09:02 +01: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 21:57:32 +01:00
ncurses
libtermkey
2021-09-11 22:58:18 +01:00
luaEnv
2021-01-15 13:21:58 +00:00
] ++ lib.optionals stdenv.isLinux [
2016-07-17 21:57:32 +01:00
acl
libselinux
];
2018-03-23 07:58:34 +00:00
postPatch = ''
patchShebangs ./configure
'';
postInstall = ''
2016-09-17 05:16:25 +01: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 \
2021-09-11 22:58:18 +01:00
--prefix LUA_CPATH ';' "${luaEnv}/lib/lua/${lua.luaversion}/?.so" \
--prefix LUA_PATH ';' "${luaEnv}/share/lua/${lua.luaversion}/?.lua" \
2016-09-17 05:16:25 +01:00
--prefix VIS_PATH : "\$HOME/.config:$out/share/vis"
'';
2019-08-13 22:52:01 +01:00
desktopItem = makeDesktopItem {
2016-09-17 05:16:25 +01: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 05:16:25 +01:00
"Application" "Development" "IDE"
];
2021-01-15 13:21:58 +00:00
mimeType = lib.concatStringsSep ";" [
2016-09-17 05:16:25 +01: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 21:57:32 +01:00
license = licenses.isc;
2016-09-17 05:16:25 +01:00
maintainers = with maintainers; [ vrthra ramkromberg ];
platforms = platforms.unix;
};
}