about summary refs log tree commit diff
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-10-01 00:56:39 +0200
committerGitHub <noreply@github.com>2023-10-01 00:56:39 +0200
commit12e8a26230858ecb1678de8f58e6de26c71e7f66 (patch)
treea9f2f50e38167e972a415f3ff2c928ab56c2d399 /pkgs/tools/backup
parent89bdd56efa97a75e1cab7d9f97736018ba6a2ea6 (diff)
parent42f4e77d305240baf4d444e1abfa4f339277007f (diff)
Merge pull request #257023 from r-ryantm/auto-update/bdsync
bdsync: 0.11.2 -> 0.11.3
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/bdsync/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/backup/bdsync/default.nix b/pkgs/tools/backup/bdsync/default.nix
index 0112ad4c9a193..bf3afacb94961 100644
--- a/pkgs/tools/backup/bdsync/default.nix
+++ b/pkgs/tools/backup/bdsync/default.nix
@@ -6,13 +6,13 @@
 
 stdenv.mkDerivation rec {
   pname = "bdsync";
-  version = "0.11.2";
+  version = "0.11.3";
 
   src = fetchFromGitHub {
     owner = "rolffokkens";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0kx422cp1bxr62i1mi7dzrpwmys1kdp865rcymdp4knb5rr5864k";
+    sha256 = "sha256-58yoF6s0WjH+1mTY7X5OX53YgcnDmGxoCR8Kvl6lP+A=";
   };
 
   nativeBuildInputs = [ pandoc which ];
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Fast block device synchronizing tool";
-    homepage = "https://github.com/TargetHolding/bdsync";
+    homepage = "https://github.com/rolffokkens/bdsync";
     license = licenses.gpl2;
     platforms = platforms.linux;
     maintainers = with maintainers; [ jluttine ];