about summary refs log tree commit diff
path: root/pkgs/applications/editors/joe/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/joe/default.nix')
-rw-r--r--pkgs/applications/editors/joe/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/applications/editors/joe/default.nix b/pkgs/applications/editors/joe/default.nix
index 0228beb78d69a..b6324e5879ced 100644
--- a/pkgs/applications/editors/joe/default.nix
+++ b/pkgs/applications/editors/joe/default.nix
@@ -1,9 +1,13 @@
 {stdenv, fetchurl} :
 
 stdenv.mkDerivation {
-name = "joe-3.3";
-src = fetchurl {
-         url = mirror://sourceforge/joe-editor/joe-3.3.tar.gz;
-         md5 = "02221716679c039c5da00c275d61dbf4";
-   };
+  name = "joe-3.3";
+  src = fetchurl {
+    url = mirror://sourceforge/joe-editor/joe-3.3.tar.gz;
+    md5 = "02221716679c039c5da00c275d61dbf4";
+  };
+
+  meta = {
+    homepage = http://joe-editor.sourceforge.net;
+  };
 }