3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/joe/default.nix
2015-09-25 15:37:16 +02:00

17 lines
405 B
Nix

{ stdenv, fetchurl } :
stdenv.mkDerivation rec {
name = "joe-4.1";
src = fetchurl {
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
sha256 = "1nznzr9h0rh8g15c56yxzwpn2labx9sgsak0wcnpj7wmpnr12ql1";
};
meta = with stdenv.lib; {
description = "A full featured terminal-based screen editor";
homepage = http://joe-editor.sourceforge.net;
license = licenses.gpl2;
};
}