2015-05-31 15:13:18 +01:00
|
|
|
{ stdenv, fetchurl } :
|
2006-02-02 16:30:01 +00:00
|
|
|
|
2012-07-31 21:30:50 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-20 23:14:19 +00:00
|
|
|
version = "4.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "joe";
|
2012-07-31 21:30:50 +01:00
|
|
|
|
2008-01-30 19:49:42 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/joe-editor/${pname}-${version}.tar.gz";
|
2018-02-20 23:14:19 +00:00
|
|
|
sha256 = "1pmr598xxxm9j9dl93kq4dv36zyw0q2dh6d7x07hf134y9hhlnj9";
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
|
|
|
|
2015-05-31 15:13:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A full featured terminal-based screen editor";
|
2018-02-20 23:14:19 +00:00
|
|
|
homepage = https://joe-editor.sourceforge.io;
|
2015-05-31 15:13:18 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2006-02-02 16:30:01 +00:00
|
|
|
}
|