about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/bindfs/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-05-05 18:00:54 +0000
committerGitHub <noreply@github.com>2024-05-05 18:00:54 +0000
commit041bd1cdf731ef363170780cc202153e139180d2 (patch)
treebc4e927eb10543fdf48003086d895f83eb4c5ce4 /pkgs/tools/filesystems/bindfs/default.nix
parent93947b281226d5d89a39073b10caaf6c906070aa (diff)
parent8a50cbb3a551b9c461df11d2196f63e79eff529d (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/filesystems/bindfs/default.nix')
-rw-r--r--pkgs/tools/filesystems/bindfs/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/bindfs/default.nix b/pkgs/tools/filesystems/bindfs/default.nix
index f7d5ce61d81cf..fbd016eda7993 100644
--- a/pkgs/tools/filesystems/bindfs/default.nix
+++ b/pkgs/tools/filesystems/bindfs/default.nix
@@ -7,12 +7,12 @@
 }:
 
 stdenv.mkDerivation (finalAttrs: {
-  version = "1.17.6";
+  version = "1.17.7";
   pname = "bindfs";
 
   src = fetchurl {
     url = "https://bindfs.org/downloads/bindfs-${finalAttrs.version}.tar.gz";
-    hash = "sha256-076zzGm7K2gCzFOViOkh/qlz7WGRsTPyAkcZMR0cwYs=";
+    hash = "sha256-wLBg6Uw6IxodSqC88mb/GJmBpO845C++IylqfYFxm3o=";
   };
 
   nativeBuildInputs = [
@@ -32,5 +32,6 @@ stdenv.mkDerivation (finalAttrs: {
     license = lib.licenses.gpl2Only;
     maintainers = with lib.maintainers; [ lovek323 lovesegfault ];
     platforms = lib.platforms.unix;
+    broken = stdenv.isDarwin; # last successful build 2023-11-17
   };
 })