nixpkgs/pkgs/tools/system/bfs/default.nix

36 lines
1.1 KiB
Nix
Raw Normal View History

2019-01-04 06:36:49 +03:00
{ stdenv, fetchFromGitHub, libcap, acl }:
2018-02-11 18:16:46 +03:00
stdenv.mkDerivation rec {
pname = "bfs";
2020-11-12 19:28:00 +03:00
version = "2.1";
2018-02-11 18:16:46 +03:00
src = fetchFromGitHub {
repo = "bfs";
owner = "tavianator";
rev = version;
2020-11-12 19:28:00 +03:00
sha256 = "1iricyigm0rsc8fr91vk3krvyafbnp0y3ww1rjv94l6jbdl7rrlb";
2018-02-11 18:16:46 +03:00
};
2019-01-04 06:36:49 +03:00
buildInputs = stdenv.lib.optionals stdenv.isLinux [ libcap acl ];
2018-02-11 18:16:46 +03:00
# Disable LTO on darwin. See https://github.com/NixOS/nixpkgs/issues/19098
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile --replace "-flto -DNDEBUG" "-DNDEBUG"
'';
2018-02-11 18:16:46 +03:00
makeFlags = [ "PREFIX=$(out)" ];
buildFlags = [ "release" ]; # "release" enables compiler optimizations
meta = with stdenv.lib; {
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-26 00:19:16 +03:00
homepage = "https://github.com/tavianator/bfs";
2018-02-11 18:16:46 +03:00
license = licenses.bsd0;
2019-01-04 06:36:49 +03:00
platforms = platforms.unix;
2018-02-11 18:16:46 +03:00
maintainers = with maintainers; [ yesbox ];
};
}