summary refs log tree commit diff
path: root/pkgs/applications/editors/joe
diff options
context:
space:
mode:
authorVladyslav M <dywedir@protonmail.ch>2018-02-21 01:14:19 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-02-21 01:28:51 +0200
commitcc78571c49a4cdf891aaad70a46d6815e334e7ae (patch)
tree9f014daf6f236b128a37e814ad117f554c5c4c52 /pkgs/applications/editors/joe
parent46485d0b815a68055bf691950ff7cec1e24d0e62 (diff)
downloadnixpkgs-cc78571c49a4cdf891aaad70a46d6815e334e7ae.tar
nixpkgs-cc78571c49a4cdf891aaad70a46d6815e334e7ae.tar.gz
nixpkgs-cc78571c49a4cdf891aaad70a46d6815e334e7ae.tar.bz2
nixpkgs-cc78571c49a4cdf891aaad70a46d6815e334e7ae.tar.lz
nixpkgs-cc78571c49a4cdf891aaad70a46d6815e334e7ae.tar.xz
nixpkgs-cc78571c49a4cdf891aaad70a46d6815e334e7ae.tar.zst
nixpkgs-cc78571c49a4cdf891aaad70a46d6815e334e7ae.zip
joe: 4.4 -> 4.6
Diffstat (limited to 'pkgs/applications/editors/joe')
-rw-r--r--pkgs/applications/editors/joe/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/joe/default.nix b/pkgs/applications/editors/joe/default.nix
index d6c87c4991b..b2ace8accd8 100644
--- a/pkgs/applications/editors/joe/default.nix
+++ b/pkgs/applications/editors/joe/default.nix
@@ -1,17 +1,17 @@
 { stdenv, fetchurl } :
 
 stdenv.mkDerivation rec {
-  version = "4.4";
+  version = "4.6";
   name = "joe-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
-    sha256 = "0y898r1xlrv75m00y598rvwwsricabplyh80wawsqafapcl4hw55";
+    sha256 = "1pmr598xxxm9j9dl93kq4dv36zyw0q2dh6d7x07hf134y9hhlnj9";
   };
 
   meta = with stdenv.lib; {
     description = "A full featured terminal-based screen editor";
-    homepage = http://joe-editor.sourceforge.net;
+    homepage = https://joe-editor.sourceforge.io;
     license = licenses.gpl2;
     platforms = platforms.unix;
   };