nixpkgs/pkgs/applications/editors/joe/default.nix
2017-03-19 15:41:35 -05:00

19 lines
463 B
Nix

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