2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libcap, acl }:
|
2018-02-11 16:16:46 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "bfs";
|
2020-11-12 17:28:00 +01:00
|
|
|
version = "2.1";
|
2018-02-11 16:16:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "bfs";
|
|
|
|
owner = "tavianator";
|
|
|
|
rev = version;
|
2020-11-12 17:28:00 +01:00
|
|
|
sha256 = "1iricyigm0rsc8fr91vk3krvyafbnp0y3ww1rjv94l6jbdl7rrlb";
|
2018-02-11 16:16:46 +01:00
|
|
|
};
|
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ libcap acl ];
|
2018-02-11 16:16:46 +01:00
|
|
|
|
2019-04-30 12:52:36 +02:00
|
|
|
# Disable LTO on darwin. See https://github.com/NixOS/nixpkgs/issues/19098
|
2021-01-15 10:19:50 +01:00
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
2019-04-30 12:52:36 +02:00
|
|
|
substituteInPlace Makefile --replace "-flto -DNDEBUG" "-DNDEBUG"
|
|
|
|
'';
|
|
|
|
|
2018-02-11 16:16:46 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
buildFlags = [ "release" ]; # "release" enables compiler optimizations
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-02-11 16:16:46 +01:00
|
|
|
description = "A breadth-first version of the UNIX find command";
|
|
|
|
longDescription = ''
|
|
|
|
bfs is a variant of the UNIX find command that operates breadth-first rather than
|
|
|
|
depth-first. It is otherwise intended to be compatible with many versions of find.
|
|
|
|
'';
|
2020-02-25 22:19:16 +01:00
|
|
|
homepage = "https://github.com/tavianator/bfs";
|
2018-02-11 16:16:46 +01:00
|
|
|
license = licenses.bsd0;
|
2019-01-04 04:36:49 +01:00
|
|
|
platforms = platforms.unix;
|
2018-02-11 16:16:46 +01:00
|
|
|
maintainers = with maintainers; [ yesbox ];
|
|
|
|
};
|
|
|
|
}
|