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>

aszlig b2392c09 cb94852a

+21
+19
pkgs/applications/editors/aewan/default.nix
··· 1 + { stdenv, fetchurl, zlib, ncurses }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "aewan-${version}"; 5 + version = "1.0.01"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/aewan/${name}.tar.gz"; 9 + sha256 = "5266dec5e185e530b792522821c97dfa5f9e3892d0dca5e881d0c30ceac21817"; 10 + }; 11 + 12 + buildInputs = [ zlib ncurses ]; 13 + 14 + meta = { 15 + description = "Ascii-art Editor Without A Name"; 16 + homepage = "http://aewan.sourceforge.net/"; 17 + license = stdenv.lib.licenses.gpl2Plus; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 6474 6474 6475 6475 adobeReader = callPackage_i686 ../applications/misc/adobe-reader { }; 6476 6476 6477 + aewan = callPackage ../applications/editors/aewan { }; 6478 + 6477 6479 amsn = callPackage ../applications/networking/instant-messengers/amsn { }; 6478 6480 6479 6481 antiword = callPackage ../applications/office/antiword {};