about summary refs log tree commit diff
path: root/pkgs/applications/editors/joe/default.nix
blob: 9f4d56bf8ad4ac7658189a3fb0f36340031afffe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl } :

stdenv.mkDerivation rec {
  name = "joe-4.0";

  src = fetchurl {
    url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
    sha256 = "0599xp90idl3dkplz72p33d2rfg0hb5yd38rhqdvz5zxfzzssmn5";
  };

  meta = with stdenv.lib; {
    description = "A full featured terminal-based screen editor";
    homepage = http://joe-editor.sourceforge.net;
    license = licenses.gpl2;
  };
}