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

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

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

  meta = {
    homepage = http://joe-editor.sourceforge.net;
  };
}