We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 131a494 commit 25c916dCopy full SHA for 25c916d
pkgs/tools/system/bfs/default.nix
@@ -2,19 +2,19 @@
2
3
stdenv.mkDerivation rec {
4
pname = "bfs";
5
- version = "3.1.3";
+ version = "4.0.2";
6
7
src = fetchFromGitHub {
8
repo = "bfs";
9
owner = "tavianator";
10
rev = version;
11
- hash = "sha256-/thPPueNrYzbxxZYAqlxZ2GEsceCzd+LkI84S8AS1mo=";
+ hash = "sha256-WIJyCpnlD6/c7PG+ZPmUT8qfPelRY9Od1Dk9Ro1y1yY=";
12
};
13
14
buildInputs = [ oniguruma ] ++ lib.optionals stdenv.isLinux [ libcap acl liburing ];
15
16
+ configureFlags = [ "--enable-release" ];
17
makeFlags = [ "PREFIX=$(out)" ];
- buildFlags = [ "release" ]; # "release" enables compiler optimizations
18
19
meta = with lib; {
20
description = "Breadth-first version of the UNIX find command";
0 commit comments