added Joe (Joe's own editor). Yes!

svn path=/nixpkgs/trunk/; revision=4679
This commit is contained in:
Merijn de Jonge 2006-02-02 16:30:01 +00:00
parent d1d0f290ad
commit 1cc7a09617
3 changed files with 20 additions and 0 deletions

@ -0,0 +1,9 @@
source $stdenv/setup
PATH=$PATH
set
tar xvfz $src
cd joe-*
./configure --prefix=$out
make
make install

@ -0,0 +1,10 @@
{stdenv, fetchurl} :
stdenv.mkDerivation {
name = "joe-3.3";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/joe-editor/joe-3.3.tar.gz;
md5 = "02221716679c039c5da00c275d61dbf4";
};
}

@ -0,0 +1 @@
(import ../../../../pkgs/system/i686-linux.nix).joe