summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-10-22 09:51:16 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-10-22 09:51:16 +0000
commitd518230a658c13d37dcea97b1e02038d7ab332dd (patch)
treed5c041eae0d34a93165cdce80de79128b42819a2
parent00a4d236da788cd599362d2150ab3ea6d0cb21f0 (diff)
downloadnixpkgs-d518230a658c13d37dcea97b1e02038d7ab332dd.tar
nixpkgs-d518230a658c13d37dcea97b1e02038d7ab332dd.tar.gz
nixpkgs-d518230a658c13d37dcea97b1e02038d7ab332dd.tar.bz2
nixpkgs-d518230a658c13d37dcea97b1e02038d7ab332dd.tar.lz
nixpkgs-d518230a658c13d37dcea97b1e02038d7ab332dd.tar.xz
nixpkgs-d518230a658c13d37dcea97b1e02038d7ab332dd.tar.zst
nixpkgs-d518230a658c13d37dcea97b1e02038d7ab332dd.zip
bfs: 2.6.1 -> 2.6.2
-rw-r--r--pkgs/tools/system/bfs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/bfs/default.nix b/pkgs/tools/system/bfs/default.nix
index 7145ef5aeb6..9fcdfa5843f 100644
--- a/pkgs/tools/system/bfs/default.nix
+++ b/pkgs/tools/system/bfs/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "bfs";
-  version = "2.6.1";
+  version = "2.6.2";
 
   src = fetchFromGitHub {
     repo = "bfs";
     owner = "tavianator";
     rev = version;
-    sha256 = "sha256-S0UQuG5xOQyVIqP203Rwa3FZTnsMuD6CiuiIc6nCKcM=";
+    sha256 = "sha256-m8Ga0aG+TjWFRo2O2f+NVvdDLGExsPuBGQx6r6mBMXk=";
   };
 
   buildInputs = [ oniguruma ] ++ lib.optionals stdenv.isLinux [ libcap acl ];