summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdam Saponara <as@php.net>2019-09-17 09:33:10 -0400
committerAdam Saponara <as@php.net>2019-09-21 12:55:04 -0400
commitc7a92135050a1fdec5e7d0bb9bba150360397738 (patch)
tree58198eb771baae94d46eff88d5e68b3873e463f7
parent7a2084ee7b260c8282874ec45b6712a3c1b94966 (diff)
downloadnixpkgs-c7a92135050a1fdec5e7d0bb9bba150360397738.tar
nixpkgs-c7a92135050a1fdec5e7d0bb9bba150360397738.tar.gz
nixpkgs-c7a92135050a1fdec5e7d0bb9bba150360397738.tar.bz2
nixpkgs-c7a92135050a1fdec5e7d0bb9bba150360397738.tar.lz
nixpkgs-c7a92135050a1fdec5e7d0bb9bba150360397738.tar.xz
nixpkgs-c7a92135050a1fdec5e7d0bb9bba150360397738.tar.zst
nixpkgs-c7a92135050a1fdec5e7d0bb9bba150360397738.zip
mle: init at 1.4.1
-rw-r--r--pkgs/applications/editors/mle/default.nix33
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/editors/mle/default.nix b/pkgs/applications/editors/mle/default.nix
new file mode 100644
index 00000000000..f91d1d8fde6
--- /dev/null
+++ b/pkgs/applications/editors/mle/default.nix
@@ -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 ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f1ffc146c05..97fd33bb221 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -19695,6 +19695,8 @@ in
 
   micro = callPackage ../applications/editors/micro { };
 
+  mle = callPackage ../applications/editors/mle { };
+
   nano = callPackage ../applications/editors/nano { };
 
   nanoblogger = callPackage ../applications/misc/nanoblogger { };