summary refs log tree commit diff
diff options
context:
space:
mode:
authorkilianar <mail@kilianar.de>2022-06-16 14:47:22 +0200
committerkilianar <mail@kilianar.de>2022-06-16 14:52:20 +0200
commit4a07f05af12d29e89643225e812e4850c1637945 (patch)
tree494f03b78293a7dc3175e2ad379a0dd37ce89507
parentd72af2c373fa80e3e6661ac52d61c7591cc177d1 (diff)
downloadnixpkgs-4a07f05af12d29e89643225e812e4850c1637945.tar
nixpkgs-4a07f05af12d29e89643225e812e4850c1637945.tar.gz
nixpkgs-4a07f05af12d29e89643225e812e4850c1637945.tar.bz2
nixpkgs-4a07f05af12d29e89643225e812e4850c1637945.tar.lz
nixpkgs-4a07f05af12d29e89643225e812e4850c1637945.tar.xz
nixpkgs-4a07f05af12d29e89643225e812e4850c1637945.tar.zst
nixpkgs-4a07f05af12d29e89643225e812e4850c1637945.zip
bfs: 2.3.1 -> 2.6
bfs now relies on oniguruma for regex support therefore we need to add
oniguruma to the buildInputs.
-rw-r--r--pkgs/tools/system/bfs/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/system/bfs/default.nix b/pkgs/tools/system/bfs/default.nix
index bf98e5dcece..68feb0c1857 100644
--- a/pkgs/tools/system/bfs/default.nix
+++ b/pkgs/tools/system/bfs/default.nix
@@ -1,17 +1,17 @@
-{ lib, stdenv, fetchFromGitHub, libcap, acl }:
+{ lib, stdenv, fetchFromGitHub, libcap, acl, oniguruma }:
 
 stdenv.mkDerivation rec {
   pname = "bfs";
-  version = "2.3.1";
+  version = "2.6";
 
   src = fetchFromGitHub {
     repo = "bfs";
     owner = "tavianator";
     rev = version;
-    sha256 = "sha256-V82UdCG0J04sZP3FTVQqANrez/LCwOLQY6zzFOoIeNo=";
+    sha256 = "sha256-QFhU8MElVaEtjCP0Wjt8d9/etCYsy4QrpOFldVdok8k=";
   };
 
-  buildInputs = lib.optionals stdenv.isLinux [ libcap acl ];
+  buildInputs = [ oniguruma ] ++ lib.optionals stdenv.isLinux [ libcap acl ];
 
   # Disable LTO on darwin. See https://github.com/NixOS/nixpkgs/issues/19098
   preConfigure = lib.optionalString stdenv.isDarwin ''