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

stdenv.mkDerivation rec {
  version = "4.2";
  name = "joe-${version}";

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

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