about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/aewan/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/aewan/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/aewan/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/aewan/default.nix b/nixpkgs/pkgs/applications/editors/aewan/default.nix
new file mode 100644
index 000000000000..b9d350cbd438
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/aewan/default.nix
@@ -0,0 +1,20 @@
+{ lib, stdenv, fetchurl, zlib, ncurses }:
+
+stdenv.mkDerivation rec {
+  pname = "aewan";
+  version = "1.0.01";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/aewan/${pname}-${version}.tar.gz";
+    sha256 = "5266dec5e185e530b792522821c97dfa5f9e3892d0dca5e881d0c30ceac21817";
+  };
+
+  buildInputs = [ zlib ncurses ];
+
+  meta = {
+    description = "Ascii-art Editor Without A Name";
+    homepage = "http://aewan.sourceforge.net/";
+    license = lib.licenses.gpl2Plus;
+    platforms = lib.platforms.unix;
+  };
+}