forked from mirrors/nixpkgs
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>
This commit is contained in:
parent
cb94852ae3
commit
b2392c09a0
2 changed files with 21 additions and 0 deletions
19
pkgs/applications/editors/aewan/default.nix
Normal file
19
pkgs/applications/editors/aewan/default.nix
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6474,6 +6474,8 @@ let
|
||||||
|
|
||||||
adobeReader = callPackage_i686 ../applications/misc/adobe-reader { };
|
adobeReader = callPackage_i686 ../applications/misc/adobe-reader { };
|
||||||
|
|
||||||
|
aewan = callPackage ../applications/editors/aewan { };
|
||||||
|
|
||||||
amsn = callPackage ../applications/networking/instant-messengers/amsn { };
|
amsn = callPackage ../applications/networking/instant-messengers/amsn { };
|
||||||
|
|
||||||
antiword = callPackage ../applications/office/antiword {};
|
antiword = callPackage ../applications/office/antiword {};
|
||||||
|
|
Loading…
Add table
Reference in a new issue