mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
mle: init at 1.4.1
This commit is contained in:
parent
7a2084ee7b
commit
c7a9213505
33
pkgs/applications/editors/mle/default.nix
Normal file
33
pkgs/applications/editors/mle/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, termbox, pcre, uthash, lua5_3 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "mle";
|
||||||
|
version = "1.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "adsr";
|
||||||
|
repo = "mle";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "15i5lzcp0zar2zh34ky9m6pvvi41zgdrl3hmylpgsqnnj4r87vqc";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Fix location of Lua 5.3 header and library
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Makefile --replace "-llua5.3" "-llua";
|
||||||
|
substituteInPlace mle.h --replace "<lua5.3/" "<";
|
||||||
|
'';
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -19695,6 +19695,8 @@ in
|
|||||||
|
|
||||||
micro = callPackage ../applications/editors/micro { };
|
micro = callPackage ../applications/editors/micro { };
|
||||||
|
|
||||||
|
mle = callPackage ../applications/editors/mle { };
|
||||||
|
|
||||||
nano = callPackage ../applications/editors/nano { };
|
nano = callPackage ../applications/editors/nano { };
|
||||||
|
|
||||||
nanoblogger = callPackage ../applications/misc/nanoblogger { };
|
nanoblogger = callPackage ../applications/misc/nanoblogger { };
|
||||||
|
Loading…
Reference in New Issue
Block a user