summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-09 14:28:44 -0500
committerGitHub <noreply@github.com>2020-04-09 14:28:44 -0500
commitb89b23b0292261d9d267316af283fb1736611a19 (patch)
tree98f617013ea54c4d209171bea38f7ae54b22ab75 /pkgs
parent85354e73cb6df6247d22b95948d796d25946ee6e (diff)
parentcdda61ab6938f0a5aa422a34930989e6697214ae (diff)
downloadnixpkgs-b89b23b0292261d9d267316af283fb1736611a19.tar
nixpkgs-b89b23b0292261d9d267316af283fb1736611a19.tar.gz
nixpkgs-b89b23b0292261d9d267316af283fb1736611a19.tar.bz2
nixpkgs-b89b23b0292261d9d267316af283fb1736611a19.tar.lz
nixpkgs-b89b23b0292261d9d267316af283fb1736611a19.tar.xz
nixpkgs-b89b23b0292261d9d267316af283fb1736611a19.tar.zst
nixpkgs-b89b23b0292261d9d267316af283fb1736611a19.zip
Merge pull request #84825 from r-ryantm/auto-update/dit
dit: 0.5 -> 0.6
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/dit/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/dit/default.nix b/pkgs/applications/editors/dit/default.nix
index 2f83b0b8d99..f973e67599c 100644
--- a/pkgs/applications/editors/dit/default.nix
+++ b/pkgs/applications/editors/dit/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "dit";
-  version = "0.5";
+  version = "0.6";
 
   src = fetchurl {
     url = "https://hisham.hm/dit/releases/${version}/${pname}-${version}.tar.gz";
-    sha256 = "05vhr1gl3bb5fg49v84xhmjaqdjw6djampvylw10ydvbpnpvjvjc";
+    sha256 = "0ryvm54xxkg2gcgz4r8zdxrl6j2h8mgg9nfqmdmdr31qkcj8wjsq";
   };
 
   buildInputs = [ ncurses lua ]
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A console text editor for Unix that you already know how to use";
-    homepage = https://hisham.hm/dit/;
+    homepage = "https://hisham.hm/dit/";
     license = licenses.gpl2;
     platforms = with platforms; linux;
     maintainers = with maintainers; [ davidak ];