summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2021-02-17 13:36:30 +0100
committerFlorian Klink <flokli@flokli.de>2021-02-17 14:04:49 +0100
commita240271309dfa374b8f5b9d0a795dbf8a5c19b25 (patch)
treecea928fce2f3be2d8e73317d87f5045ae083b2e4 /pkgs/applications/networking/sync
parent25420cd7876abeb4eae04912db700de79e51121b (diff)
downloadnixpkgs-a240271309dfa374b8f5b9d0a795dbf8a5c19b25.tar
nixpkgs-a240271309dfa374b8f5b9d0a795dbf8a5c19b25.tar.gz
nixpkgs-a240271309dfa374b8f5b9d0a795dbf8a5c19b25.tar.bz2
nixpkgs-a240271309dfa374b8f5b9d0a795dbf8a5c19b25.tar.lz
nixpkgs-a240271309dfa374b8f5b9d0a795dbf8a5c19b25.tar.xz
nixpkgs-a240271309dfa374b8f5b9d0a795dbf8a5c19b25.tar.zst
nixpkgs-a240271309dfa374b8f5b9d0a795dbf8a5c19b25.zip
casync: 2-219-ga8f6c84 -> 2-226-gbd8898e
Changes:

 - bd8898e Merge pull request #244 from timgates42/bugfix_typo_distinguish
 - a904fda docs: fix simple typo, distuingish -> distinguish
 - 4ad9bcb caprotocol: fix typo in protocol description
 - 6cfe2d4 Call stat again after changing ownership of created files, so we detect reset setuid/setgid bits and reset them.
 - d246d6d We erroneously use the st_dev value in place of the magic value if the st_dev value is cached. This causes problems extracting trees containing subvolumes.
 - f9718df Merge pull request #228 from johannbg/FEDORA31
 - 1abde25 Update to Fedora31
Diffstat (limited to 'pkgs/applications/networking/sync')
-rw-r--r--pkgs/applications/networking/sync/casync/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/sync/casync/default.nix b/pkgs/applications/networking/sync/casync/default.nix
index 0e82aa2dd85..911365b1a80 100644
--- a/pkgs/applications/networking/sync/casync/default.nix
+++ b/pkgs/applications/networking/sync/casync/default.nix
@@ -9,13 +9,13 @@
 
 stdenv.mkDerivation {
   pname = "casync";
-  version = "2-219-ga8f6c84";
+  version = "2-226-gbd8898e";
 
   src = fetchFromGitHub {
-    owner  = "systemd";
-    repo   = "casync";
-    rev    = "a8f6c841ccfe59ca8c68aad64df170b64042dce8";
-    sha256 = "1i3c9wmpabpmx2wfbcyabmwfa66vz92iq5dlbm89v5mvgavz7bws";
+    owner = "systemd";
+    repo = "casync";
+    rev = "bd8898ed92685e12022dd33a04c87786b5262344";
+    sha256 = "04ibglizjzyd7ih13q6m7ic78n0mzw9nfmb3zd1fcm9j62qlq11i";
   };
 
   buildInputs = [ acl curl xz zstd ]