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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libcap, acl, oniguruma }:
2018-02-11 15:16:46 +00:00
stdenv.mkDerivation rec {
pname = "bfs";
2022-10-22 09:51:16 +00:00
version = "2.6.2";
2018-02-11 15:16:46 +00:00
src = fetchFromGitHub {
repo = "bfs";
owner = "tavianator";
rev = version;
2022-10-22 09:51:16 +00:00
sha256 = "sha256-m8Ga0aG+TjWFRo2O2f+NVvdDLGExsPuBGQx6r6mBMXk=";
2018-02-11 15:16:46 +00:00
};
buildInputs = [ oniguruma ] ++ 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 ];
};
}