From 4a07f05af12d29e89643225e812e4850c1637945 Mon Sep 17 00:00:00 2001 From: kilianar Date: Thu, 16 Jun 2022 14:47:22 +0200 Subject: bfs: 2.3.1 -> 2.6 bfs now relies on oniguruma for regex support therefore we need to add oniguruma to the buildInputs. --- pkgs/tools/system/bfs/default.nix | 8 ++++---- 1 file 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 '' -- cgit 1.4.1