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

36 lines
1.1 KiB
Nix
Raw Normal View History

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