summary refs log tree commit diff
diff options
context:
space:
mode:
authorErin Kim <79354991+oati@users.noreply.github.com>2022-07-16 13:55:10 +0000
committerGitHub <noreply@github.com>2022-07-16 08:55:10 -0500
commit9a5f8de353f5a0cc5e04238ce1d03c6c06570b05 (patch)
tree620eef7ec5b845702735e6f02eefa13da21c8640
parentc35441b824f2cbeaaa9599a210955483d69ee9e3 (diff)
downloadnixpkgs-9a5f8de353f5a0cc5e04238ce1d03c6c06570b05.tar
nixpkgs-9a5f8de353f5a0cc5e04238ce1d03c6c06570b05.tar.gz
nixpkgs-9a5f8de353f5a0cc5e04238ce1d03c6c06570b05.tar.bz2
nixpkgs-9a5f8de353f5a0cc5e04238ce1d03c6c06570b05.tar.lz
nixpkgs-9a5f8de353f5a0cc5e04238ce1d03c6c06570b05.tar.xz
nixpkgs-9a5f8de353f5a0cc5e04238ce1d03c6c06570b05.tar.zst
nixpkgs-9a5f8de353f5a0cc5e04238ce1d03c6c06570b05.zip
bindfs: 1.16.1 -> 1.17.0 (#181305)
-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 cc4bfc917ef..21d16159480 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.16.1";
+  version = "1.17.0";
   pname = "bindfs";
 
   src = fetchurl {
     url    = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
-    sha256 = "sha256-Veo9KqjkjQvqI7fAsDlQz+tJI1W/2Nu4oXOh44PyKLw=";
+    sha256 = "sha256-cNpX1J53lP5UuFdb/danlDqrVK2i6OL99L4E4AEUUdw=";
   };
 
   nativeBuildInputs = [ pkg-config ];