added Joe (Joe's own editor). Yes!
svn path=/nixpkgs/trunk/; revision=4679
This commit is contained in:
parent
d1d0f290ad
commit
1cc7a09617
3 changed files with 20 additions and 0 deletions
9
pkgs/applications/editors/joe/builder.sh
Normal file
9
pkgs/applications/editors/joe/builder.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
source $stdenv/setup
|
||||
|
||||
PATH=$PATH
|
||||
set
|
||||
tar xvfz $src
|
||||
cd joe-*
|
||||
./configure --prefix=$out
|
||||
make
|
||||
make install
|
10
pkgs/applications/editors/joe/default.nix
Normal file
10
pkgs/applications/editors/joe/default.nix
Normal file
|
@ -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";
|
||||
};
|
||||
}
|
1
pkgs/applications/editors/joe/test.nix
Normal file
1
pkgs/applications/editors/joe/test.nix
Normal file
|
@ -0,0 +1 @@
|
|||
(import ../../../../pkgs/system/i686-linux.nix).joe
|
Loading…
Reference in a new issue