2015-05-31 07:13:18 -07:00
|
|
|
{ stdenv, fetchurl } :
|
2006-02-02 08:30:01 -08:00
|
|
|
|
2012-07-31 13:30:50 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-19 13:41:35 -07:00
|
|
|
version = "4.4";
|
2015-09-25 06:40:28 -07:00
|
|
|
name = "joe-${version}";
|
2012-07-31 13:30:50 -07:00
|
|
|
|
2008-01-30 11:49:42 -08:00
|
|
|
src = fetchurl {
|
2012-07-31 13:30:50 -07:00
|
|
|
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
|
2017-03-19 13:41:35 -07:00
|
|
|
sha256 = "0y898r1xlrv75m00y598rvwwsricabplyh80wawsqafapcl4hw55";
|
2008-01-30 11:49:42 -08:00
|
|
|
};
|
|
|
|
|
2015-05-31 07:13:18 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A full featured terminal-based screen editor";
|
2008-01-30 11:49:42 -08:00
|
|
|
homepage = http://joe-editor.sourceforge.net;
|
2015-05-31 07:13:18 -07:00
|
|
|
license = licenses.gpl2;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = platforms.unix;
|
2008-01-30 11:49:42 -08:00
|
|
|
};
|
2006-02-02 08:30:01 -08:00
|
|
|
}
|