summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-07-07 19:20:25 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-07-07 19:20:25 +0000
commit53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1 (patch)
tree70dba10e3731857ea393e5aab6b75158d68e89d9
parent4acc16240c7f22fd335fa5eb1654cf59c4ea9e6c (diff)
downloadnixpkgs-53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1.tar
nixpkgs-53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1.tar.gz
nixpkgs-53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1.tar.bz2
nixpkgs-53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1.tar.lz
nixpkgs-53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1.tar.xz
nixpkgs-53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1.tar.zst
nixpkgs-53e73b96212f8f42cbea6bd16fbaa7e27d6c63e1.zip
bfs: 2.6 -> 2.6.1
-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 68feb0c1857..7145ef5aeb6 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";
+  version = "2.6.1";
 
   src = fetchFromGitHub {
     repo = "bfs";
     owner = "tavianator";
     rev = version;
-    sha256 = "sha256-QFhU8MElVaEtjCP0Wjt8d9/etCYsy4QrpOFldVdok8k=";
+    sha256 = "sha256-S0UQuG5xOQyVIqP203Rwa3FZTnsMuD6CiuiIc6nCKcM=";
   };
 
   buildInputs = [ oniguruma ] ++ lib.optionals stdenv.isLinux [ libcap acl ];