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

67 lines
1.7 KiB
Nix
Raw Normal View History

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