about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/joe/default.nix
blob: 6f5839b3d06f6de0d43a11277ccb922f4198a9df (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.6";
  pname = "joe";

  src = fetchurl {
    url = "mirror://sourceforge/joe-editor/${pname}-${version}.tar.gz";
    sha256 = "1pmr598xxxm9j9dl93kq4dv36zyw0q2dh6d7x07hf134y9hhlnj9";
  };

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