aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/editors/joe
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-05-31 16:13:18 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-05-31 16:30:24 +0200
commit59943d69f990b177c4bf47bad564e001456ce7a9 (patch)
tree10930ea80e83849b0592bf4fe4f46a1335e017b3 /pkgs/applications/editors/joe
parente0cc3efca250100bb7d821c4c564ec13f8a82921 (diff)
joe: update from 3.7 to 4.0, add meta-information
Diffstat (limited to 'pkgs/applications/editors/joe')
-rw-r--r--pkgs/applications/editors/joe/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/editors/joe/default.nix b/pkgs/applications/editors/joe/default.nix
index 0e97a036905..9f4d56bf8ad 100644
--- a/pkgs/applications/editors/joe/default.nix
+++ b/pkgs/applications/editors/joe/default.nix
@@ -1,14 +1,16 @@
-{stdenv, fetchurl} :
+{ stdenv, fetchurl } :
stdenv.mkDerivation rec {
- name = "joe-3.7";
+ name = "joe-4.0";
src = fetchurl {
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
- sha256 = "0vqhffdjn3xwsfa383i6kdrpfwilq8b382ljjhy1v32smphmdr6a";
+ sha256 = "0599xp90idl3dkplz72p33d2rfg0hb5yd38rhqdvz5zxfzzssmn5";
};
- meta = {
+ meta = with stdenv.lib; {
+ description = "A full featured terminal-based screen editor";
homepage = http://joe-editor.sourceforge.net;
+ license = licenses.gpl2;
};
}