summary refs log tree commit diff
path: root/pkgs/applications/editors/joe
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2012-07-31 16:30:50 -0400
committerShea Levy <shea@shealevy.com>2012-07-31 16:30:50 -0400
commit53007311775716454abb2b054df3994be980e892 (patch)
tree94f799783fdefa97a391e2519a4a8ac7d6b0c124 /pkgs/applications/editors/joe
parenteb29e0449bc0382f5bd8238f69031982fdde4fdb (diff)
downloadnixlib-53007311775716454abb2b054df3994be980e892.tar
nixlib-53007311775716454abb2b054df3994be980e892.tar.gz
nixlib-53007311775716454abb2b054df3994be980e892.tar.bz2
nixlib-53007311775716454abb2b054df3994be980e892.tar.lz
nixlib-53007311775716454abb2b054df3994be980e892.tar.xz
nixlib-53007311775716454abb2b054df3994be980e892.tar.zst
nixlib-53007311775716454abb2b054df3994be980e892.zip
Joe: Bump to 3.7
Diffstat (limited to 'pkgs/applications/editors/joe')
-rw-r--r--pkgs/applications/editors/joe/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/editors/joe/default.nix b/pkgs/applications/editors/joe/default.nix
index b6324e5879ce..0e97a036905c 100644
--- a/pkgs/applications/editors/joe/default.nix
+++ b/pkgs/applications/editors/joe/default.nix
@@ -1,10 +1,11 @@
 {stdenv, fetchurl} :
 
-stdenv.mkDerivation {
-  name = "joe-3.3";
+stdenv.mkDerivation rec {
+  name = "joe-3.7";
+
   src = fetchurl {
-    url = mirror://sourceforge/joe-editor/joe-3.3.tar.gz;
-    md5 = "02221716679c039c5da00c275d61dbf4";
+    url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
+    sha256 = "0vqhffdjn3xwsfa383i6kdrpfwilq8b382ljjhy1v32smphmdr6a";
   };
 
   meta = {