nixpkgs/pkgs/applications/editors/joe/default.nix

19 lines
463 B
Nix
Raw Normal View History

{ stdenv, fetchurl } :
2012-07-31 22:30:50 +02:00
stdenv.mkDerivation rec {
2017-03-19 21:41:35 +01:00
version = "4.4";
2015-09-25 15:40:28 +02:00
name = "joe-${version}";
2012-07-31 22:30:50 +02:00
src = fetchurl {
2012-07-31 22:30:50 +02:00
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
2017-03-19 21:41:35 +01:00
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;
};
}