2015-05-31 16:13:18 +02:00
|
|
|
{ stdenv, fetchurl } :
|
2006-02-02 17:30:01 +01:00
|
|
|
|
2012-07-31 22:30:50 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-25 15:37:16 +02:00
|
|
|
name = "joe-4.1";
|
2012-07-31 22:30:50 +02:00
|
|
|
|
2008-01-30 20:49:42 +01:00
|
|
|
src = fetchurl {
|
2012-07-31 22:30:50 +02:00
|
|
|
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
|
2015-09-25 15:37:16 +02:00
|
|
|
sha256 = "1nznzr9h0rh8g15c56yxzwpn2labx9sgsak0wcnpj7wmpnr12ql1";
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
|
|
|
|
2015-05-31 16:13:18 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A full featured terminal-based screen editor";
|
2008-01-30 20:49:42 +01:00
|
|
|
homepage = http://joe-editor.sourceforge.net;
|
2015-05-31 16:13:18 +02:00
|
|
|
license = licenses.gpl2;
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2006-02-02 17:30:01 +01:00
|
|
|
}
|