about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2024-05-26 21:58:24 +0200
committerRobert Helgesson <robert@rycee.net>2024-05-27 00:09:01 +0200
commita7b6a4663a457c7c5af925955171b551d0c693e0 (patch)
tree1c80338d4424977f6ba4f6858116697ccab9e52c /pkgs
parentd7ac3b8504f9a9889f2e8e162efc75bef19e0bf3 (diff)
trash-cli: 0.24.4.17 -> 0.24.5.26
Diff: https://github.com/andreafrancia/trash-cli/compare/0.24.4.17...0.24.5.26

Also add explicit update script.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/trash-cli/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/misc/trash-cli/default.nix b/pkgs/tools/misc/trash-cli/default.nix
index 7f89f7a12cdee..e807bff429d99 100644
--- a/pkgs/tools/misc/trash-cli/default.nix
+++ b/pkgs/tools/misc/trash-cli/default.nix
@@ -1,14 +1,14 @@
-{ lib, fetchFromGitHub, installShellFiles, python3Packages }:
+{ lib, fetchFromGitHub, installShellFiles, nix-update-script, python3Packages }:
 
 python3Packages.buildPythonApplication rec {
   pname = "trash-cli";
-  version = "0.24.4.17";
+  version = "0.24.5.26";
 
   src = fetchFromGitHub {
     owner = "andreafrancia";
     repo = "trash-cli";
     rev = version;
-    hash = "sha256-pXDqn+QuhTE12zXq6A4GSGSCtYJ6hBahv2p9aYQXxaI=";
+    hash = "sha256-ltuMnxtG4jTTSZd6ZHWl8wI0oQMMFqW0HAPetZMfGtc=";
   };
 
   propagatedBuildInputs = with python3Packages; [ psutil six ];
@@ -56,6 +56,8 @@ python3Packages.buildPythonApplication rec {
     done
   '';
 
+  passthru.updateScript = nix-update-script { };
+
   meta = with lib; {
     homepage = "https://github.com/andreafrancia/trash-cli";
     description = "Command line interface to the freedesktop.org trashcan";