aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/editors/mle/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/editors/mle/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/editors/mle/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/editors/mle/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/editors/mle/default.nix
new file mode 100644
index 000000000000..692b82dc6887
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/editors/mle/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, termbox, pcre, uthash, lua5_3 }:
+
+stdenv.mkDerivation rec {
+ pname = "mle";
+ version = "1.4.3";
+
+ src = fetchFromGitHub {
+ owner = "adsr";
+ repo = "mle";
+ rev = "v${version}";
+ sha256 = "16dbwfdd6sqqn7jfaxd5wdy8y9ghbihnz6bgn3xhqcww8rj1sia1";
+ };
+
+ # Fix location of Lua 5.3 header and library
+ postPatch = ''
+ substituteInPlace Makefile --replace "-llua5.3" "-llua";
+ substituteInPlace mle.h --replace "<lua5.3/" "<";
+ patchShebangs tests/*
+ '';
+
+ 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 ];
+ };
+}