summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-02-02 19:57:30 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-02-02 19:57:30 +0000
commitb79093936699873a949aeaa7207d0e018762a428 (patch)
tree40c97a0dc3d92e08e2ca5d2a0c418fc77f147656
parent695a83030fa42cf02f8cd106b00718c45c82d671 (diff)
downloadnixpkgs-b79093936699873a949aeaa7207d0e018762a428.tar
nixpkgs-b79093936699873a949aeaa7207d0e018762a428.tar.gz
nixpkgs-b79093936699873a949aeaa7207d0e018762a428.tar.bz2
nixpkgs-b79093936699873a949aeaa7207d0e018762a428.tar.lz
nixpkgs-b79093936699873a949aeaa7207d0e018762a428.tar.xz
nixpkgs-b79093936699873a949aeaa7207d0e018762a428.tar.zst
nixpkgs-b79093936699873a949aeaa7207d0e018762a428.zip
bfs: 2.6.2 -> 2.6.3
-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 9fcdfa5843f..5a11a1740b2 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.2";
+  version = "2.6.3";
 
   src = fetchFromGitHub {
     repo = "bfs";
     owner = "tavianator";
     rev = version;
-    sha256 = "sha256-m8Ga0aG+TjWFRo2O2f+NVvdDLGExsPuBGQx6r6mBMXk=";
+    sha256 = "sha256-XsbD5WYa05tldwBylr6CLwARo61/g4IN686pkCpGGM4=";
   };
 
   buildInputs = [ oniguruma ] ++ lib.optionals stdenv.isLinux [ libcap acl ];