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

19 lines
463 B
Nix
Raw Normal View History

{ stdenv, fetchurl } :
2012-07-31 20:30:50 +00:00
stdenv.mkDerivation rec {
2018-02-20 23:14:19 +00:00
version = "4.6";
2015-09-25 13:40:28 +00:00
name = "joe-${version}";
2012-07-31 20:30:50 +00:00
src = fetchurl {
2012-07-31 20:30:50 +00:00
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
2018-02-20 23:14:19 +00:00
sha256 = "1pmr598xxxm9j9dl93kq4dv36zyw0q2dh6d7x07hf134y9hhlnj9";
};
meta = with stdenv.lib; {
description = "A full featured terminal-based screen editor";
2018-02-20 23:14:19 +00:00
homepage = https://joe-editor.sourceforge.io;
license = licenses.gpl2;
platforms = platforms.unix;
};
}