summary refs log tree commit diff
path: root/pkgs/applications/editors/aewan
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-09-14 23:11:07 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-09-14 23:24:10 +0200
commitb2392c09a05f314c69ce9ee022a66e7593a0f47a (patch)
tree1360de0d4aa99e1b6db732b2d7f8529c4a8ef720 /pkgs/applications/editors/aewan
parentcb94852ae311f616a0cdd18fe0f94bbf017f2270 (diff)
downloadnixpkgs-b2392c09a05f314c69ce9ee022a66e7593a0f47a.tar
nixpkgs-b2392c09a05f314c69ce9ee022a66e7593a0f47a.tar.gz
nixpkgs-b2392c09a05f314c69ce9ee022a66e7593a0f47a.tar.bz2
nixpkgs-b2392c09a05f314c69ce9ee022a66e7593a0f47a.tar.lz
nixpkgs-b2392c09a05f314c69ce9ee022a66e7593a0f47a.tar.xz
nixpkgs-b2392c09a05f314c69ce9ee022a66e7593a0f47a.tar.zst
nixpkgs-b2392c09a05f314c69ce9ee022a66e7593a0f47a.zip
aewan: New package, version 1.0.01.
This adds a small ASCII art drawing tool, which supports drawing with multiple
layers. Might be especially helpful for larger "images", which become quite
tedious to do using vim.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/editors/aewan')
-rw-r--r--pkgs/applications/editors/aewan/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/editors/aewan/default.nix b/pkgs/applications/editors/aewan/default.nix
new file mode 100644
index 00000000000..3e11f78e402
--- /dev/null
+++ b/pkgs/applications/editors/aewan/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, zlib, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "aewan-${version}";
+  version = "1.0.01";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/aewan/${name}.tar.gz";
+    sha256 = "5266dec5e185e530b792522821c97dfa5f9e3892d0dca5e881d0c30ceac21817";
+  };
+
+  buildInputs = [ zlib ncurses ];
+
+  meta = {
+    description = "Ascii-art Editor Without A Name";
+    homepage = "http://aewan.sourceforge.net/";
+    license = stdenv.lib.licenses.gpl2Plus;
+  };
+}