From 1cc7a096170c74d168fa4a878f5f0c1311d92b72 Mon Sep 17 00:00:00 2001 From: Merijn de Jonge Date: Thu, 2 Feb 2006 16:30:01 +0000 Subject: [PATCH] added Joe (Joe's own editor). Yes! svn path=/nixpkgs/trunk/; revision=4679 --- pkgs/applications/editors/joe/builder.sh | 9 +++++++++ pkgs/applications/editors/joe/default.nix | 10 ++++++++++ pkgs/applications/editors/joe/test.nix | 1 + 3 files changed, 20 insertions(+) create mode 100644 pkgs/applications/editors/joe/builder.sh create mode 100644 pkgs/applications/editors/joe/default.nix create mode 100644 pkgs/applications/editors/joe/test.nix diff --git a/pkgs/applications/editors/joe/builder.sh b/pkgs/applications/editors/joe/builder.sh new file mode 100644 index 00000000000..be70986bf43 --- /dev/null +++ b/pkgs/applications/editors/joe/builder.sh @@ -0,0 +1,9 @@ +source $stdenv/setup + +PATH=$PATH +set +tar xvfz $src +cd joe-* +./configure --prefix=$out +make +make install diff --git a/pkgs/applications/editors/joe/default.nix b/pkgs/applications/editors/joe/default.nix new file mode 100644 index 00000000000..24fc4ceb36a --- /dev/null +++ b/pkgs/applications/editors/joe/default.nix @@ -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"; + }; +} diff --git a/pkgs/applications/editors/joe/test.nix b/pkgs/applications/editors/joe/test.nix new file mode 100644 index 00000000000..7d7dc1064ea --- /dev/null +++ b/pkgs/applications/editors/joe/test.nix @@ -0,0 +1 @@ +(import ../../../../pkgs/system/i686-linux.nix).joe