2022-05-29 17:00:49 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2023-05-26 05:32:01 +00:00
|
|
|
, pcre2
|
2022-05-29 17:00:49 +00:00
|
|
|
, uthash
|
|
|
|
, lua5_4
|
|
|
|
, makeWrapper
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2019-09-17 13:33:10 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "mle";
|
2023-05-26 05:32:01 +00:00
|
|
|
version = "1.7.2";
|
2019-09-17 13:33:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "adsr";
|
|
|
|
repo = "mle";
|
|
|
|
rev = "v${version}";
|
2023-05-26 05:32:01 +00:00
|
|
|
sha256 = "0rkk7mh6w5y1lrbdv7wmxdgl5cqzpzw0p26adazkqlfdyb6wbj9k";
|
2019-09-17 13:33:10 +00:00
|
|
|
};
|
|
|
|
|
2022-05-29 17:00:49 +00:00
|
|
|
# Fix location of Lua 5.4 header and library
|
2019-09-17 13:33:10 +00:00
|
|
|
postPatch = ''
|
2022-05-29 17:00:49 +00:00
|
|
|
substituteInPlace Makefile --replace "-llua5.4" "-llua";
|
|
|
|
substituteInPlace mle.h --replace "<lua5.4/" "<";
|
2019-11-16 16:23:06 +00:00
|
|
|
patchShebangs tests/*
|
2019-09-17 13:33:10 +00:00
|
|
|
'';
|
|
|
|
|
2022-04-18 13:33:51 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
|
|
|
|
2023-05-26 05:32:01 +00:00
|
|
|
buildInputs = [ pcre2 uthash lua5_4 ];
|
2019-09-17 13:33:10 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
installFlags = [ "prefix=${placeholder "out"}" ];
|
|
|
|
|
2022-04-18 13:33:51 +00:00
|
|
|
postInstall = ''
|
|
|
|
installManPage mle.1
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-05-29 17:00:49 +00:00
|
|
|
description = "Small, flexible, terminal-based text editor";
|
2019-09-17 13:33:10 +00:00
|
|
|
homepage = "https://github.com/adsr/mle";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ adsr ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "mle";
|
2019-09-17 13:33:10 +00:00
|
|
|
};
|
|
|
|
}
|