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

35 lines
879 B
Nix
Raw Normal View History

2019-09-17 14:33:10 +01:00
{ stdenv, fetchFromGitHub, termbox, pcre, uthash, lua5_3 }:
stdenv.mkDerivation rec {
pname = "mle";
2019-11-28 11:16:39 +00:00
version = "1.4.2";
2019-09-17 14:33:10 +01:00
src = fetchFromGitHub {
owner = "adsr";
repo = "mle";
rev = "v${version}";
2019-11-28 11:16:39 +00:00
sha256 = "053zvxkjx2zwq6lwkycirxz1m9sjc3zi9ic8fvp3mjvbqfri1y3x";
2019-09-17 14:33:10 +01:00
};
# Fix location of Lua 5.3 header and library
postPatch = ''
substituteInPlace Makefile --replace "-llua5.3" "-llua";
substituteInPlace mle.h --replace "<lua5.3/" "<";
2019-11-16 16:23:06 +00:00
patchShebangs tests/*
2019-09-17 14:33:10 +01:00
'';
buildInputs = [ termbox pcre uthash lua5_3 ];
doCheck = true;
installFlags = [ "prefix=${placeholder "out"}" ];
meta = with stdenv.lib; {
description = "Small, flexible terminal-based text editor";
homepage = "https://github.com/adsr/mle";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ adsr ];
};
}