about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorAnton Mosich <anton@mosich.at>2023-08-25 21:26:21 +0200
committerAnton Mosich <anton@mosich.at>2023-08-25 21:26:21 +0200
commitda5f5eea70cd2d0cdeacc2e27f2ce61500019f36 (patch)
tree1bf14164a08cf6896fc4bbf2e4da1bb25ac40c05 /pkgs/tools
parent94d494b2f667a9c910582e1ba9648babd63550bf (diff)
ncdu_1: 1.17 -> 1.18.1
Also sets meta.mainProgram
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/ncdu/1.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/misc/ncdu/1.nix b/pkgs/tools/misc/ncdu/1.nix
index 742ef587138a1..09289ea745da9 100644
--- a/pkgs/tools/misc/ncdu/1.nix
+++ b/pkgs/tools/misc/ncdu/1.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "ncdu";
-  version = "1.17";
+  version = "1.18.1";
 
   src = fetchurl {
     url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz";
-    sha256 = "sha256-gQdFqO0as3iMh9OupMwaFO327iJvdkvMOD4CS6Vq2/E=";
+    sha256 = "sha256-fA+h6ynYWq7UuhdBZL27jwEbXDkNAXxX1mj8cjEzJAU=";
   };
 
   buildInputs = [ ncurses ];
@@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
     license = licenses.mit;
     platforms = platforms.all;
     maintainers = with maintainers; [ pSub ];
+    mainProgram = "ncdu";
   };
 }