summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-10-21 06:25:00 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-10-21 06:25:00 +0000
commitc38df8834b849cafe65cabe0f2aedb6cb8fc6b5a (patch)
tree78c0e86df9173400618ca0d503db4c64df510979
parentdd2351ee2f2671d2f2216dd843e4997060eb9576 (diff)
downloadnixpkgs-c38df8834b849cafe65cabe0f2aedb6cb8fc6b5a.tar
nixpkgs-c38df8834b849cafe65cabe0f2aedb6cb8fc6b5a.tar.gz
nixpkgs-c38df8834b849cafe65cabe0f2aedb6cb8fc6b5a.tar.bz2
nixpkgs-c38df8834b849cafe65cabe0f2aedb6cb8fc6b5a.tar.lz
nixpkgs-c38df8834b849cafe65cabe0f2aedb6cb8fc6b5a.tar.xz
nixpkgs-c38df8834b849cafe65cabe0f2aedb6cb8fc6b5a.tar.zst
nixpkgs-c38df8834b849cafe65cabe0f2aedb6cb8fc6b5a.zip
bindfs: 1.17.0 -> 1.17.1
-rw-r--r--pkgs/tools/filesystems/bindfs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/bindfs/default.nix b/pkgs/tools/filesystems/bindfs/default.nix
index 21d16159480..fd98747d2fd 100644
--- a/pkgs/tools/filesystems/bindfs/default.nix
+++ b/pkgs/tools/filesystems/bindfs/default.nix
@@ -1,12 +1,12 @@
 { lib, stdenv, fetchurl, fuse, pkg-config }:
 
 stdenv.mkDerivation rec {
-  version = "1.17.0";
+  version = "1.17.1";
   pname = "bindfs";
 
   src = fetchurl {
     url    = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
-    sha256 = "sha256-cNpX1J53lP5UuFdb/danlDqrVK2i6OL99L4E4AEUUdw=";
+    sha256 = "sha256-7bSYkUTSj3Wv/E9bGAdPuXpY1u41rWkZrHXraky/41I=";
   };
 
   nativeBuildInputs = [ pkg-config ];