about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/dit/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/dit/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/dit/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/dit/default.nix b/nixpkgs/pkgs/applications/editors/dit/default.nix
new file mode 100644
index 000000000000..170019d27381
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/dit/default.nix
@@ -0,0 +1,28 @@
+{ lib, fetchurl, stdenv, libiconv, ncurses, lua }:
+
+stdenv.mkDerivation rec {
+  pname = "dit";
+  version = "0.7";
+
+  src = fetchurl {
+    url = "https://hisham.hm/dit/releases/${version}/${pname}-${version}.tar.gz";
+    sha256 = "0cmbyzqfz2qa83cg8lpjifn34wmx34c5innw485zh4vk3c0k8wlj";
+  };
+
+  buildInputs = [ ncurses lua ]
+    ++ lib.optional stdenv.isDarwin libiconv;
+
+  # fix paths
+  prePatch = ''
+    patchShebangs tools/GenHeaders
+    substituteInPlace Prototypes.h --replace 'tail' "$(type -P tail)"
+  '';
+
+  meta = with lib; {
+    description = "A console text editor for Unix that you already know how to use";
+    homepage = "https://hisham.hm/dit/";
+    license = licenses.gpl2;
+    platforms = with platforms; linux;
+    maintainers = with maintainers; [ davidak ];
+  };
+}