summary refs log tree commit diff
path: root/pkgs/applications/editors/joe
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-19 15:41:35 -0500
committerndowens <ndowens04@gmail.com>2017-03-19 15:41:35 -0500
commit876dead5b6c3732642d3c70e2d071f2923372d0e (patch)
treecdee8f2b49d046bd0c48199c34b0047a9af9de95 /pkgs/applications/editors/joe
parent13447dde558dcf3ec5b2f131cab7228741672a93 (diff)
downloadnixpkgs-876dead5b6c3732642d3c70e2d071f2923372d0e.tar
nixpkgs-876dead5b6c3732642d3c70e2d071f2923372d0e.tar.gz
nixpkgs-876dead5b6c3732642d3c70e2d071f2923372d0e.tar.bz2
nixpkgs-876dead5b6c3732642d3c70e2d071f2923372d0e.tar.lz
nixpkgs-876dead5b6c3732642d3c70e2d071f2923372d0e.tar.xz
nixpkgs-876dead5b6c3732642d3c70e2d071f2923372d0e.tar.zst
nixpkgs-876dead5b6c3732642d3c70e2d071f2923372d0e.zip
joe: 4.2 -> 4.4
Diffstat (limited to 'pkgs/applications/editors/joe')
-rw-r--r--pkgs/applications/editors/joe/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/joe/default.nix b/pkgs/applications/editors/joe/default.nix
index 323059417ea..d6c87c4991b 100644
--- a/pkgs/applications/editors/joe/default.nix
+++ b/pkgs/applications/editors/joe/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl } :
 
 stdenv.mkDerivation rec {
-  version = "4.2";
+  version = "4.4";
   name = "joe-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
-    sha256 = "0x39x0qrwdbhl45wd8r8cpzigsip6m5j2crajsrbffk8qm5scpdw";
+    sha256 = "0y898r1xlrv75m00y598rvwwsricabplyh80wawsqafapcl4hw55";
   };
 
   meta = with stdenv.lib; {