From 1ce494d81d9e49ae5bb8c7b798a62831a5702d6a Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Thu, 16 Apr 2009 19:28:42 +0000 Subject: Adding elvis, although I can't see the characters in an xterm with black background svn path=/nixpkgs/trunk/; revision=15098 --- pkgs/applications/editors/elvis/default.nix | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 pkgs/applications/editors/elvis/default.nix (limited to 'pkgs/applications/editors/elvis') diff --git a/pkgs/applications/editors/elvis/default.nix b/pkgs/applications/editors/elvis/default.nix new file mode 100644 index 000000000000..511e284ed39e --- /dev/null +++ b/pkgs/applications/editors/elvis/default.nix @@ -0,0 +1,40 @@ +{ fetchurl, stdenv, ncurses }: + +stdenv.mkDerivation rec { + name = "elvis-2.2_0"; + + src = fetchurl { + url = ftp://ftp.cs.pdx.edu/pub/elvis/elvis-2.2_0.tar.gz; + sha256 = "182fj9qzyq6cjq1r849gpam6nq9smwv9f9xwaq84961p56r6d14s"; + }; + + buildInputs = [ ncurses ]; + + patchPhase = '' + sed -i s/-lcurses/-lncurses/ configure + ''; + + preConfigure = '' + ensureDir $out/share/man/man1 + ''; + + installPhase = '' + ensureDir $out/bin $out/share/elvis $out/share/elvis/doc + cp elvis ref elvtags elvfmt $out/bin + cp -R data/* $out/share/elvis + cp doc/* $out/share/elvis/doc + + ensureDir $out/share/man/man1 + for a in doc/*.man; do + cp $a $out/share/man/man1/`basename $a .man`.1 + done + ''; + + configureFlags = "--ioctl=termios"; + + meta = { + homepage = http://elvis.vi-editor.org/; + description = "A vi clone for Unix and other operating systems"; + license = "free"; + }; +} -- cgit 1.4.1