about summary refs log tree commit diff
path: root/pkgs/tools/system/bfs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/system/bfs/default.nix')
-rw-r--r--pkgs/tools/system/bfs/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/system/bfs/default.nix b/pkgs/tools/system/bfs/default.nix
deleted file mode 100644
index 464c5f67ed57..000000000000
--- a/pkgs/tools/system/bfs/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, libcap, acl, oniguruma, liburing }:
-
-stdenv.mkDerivation rec {
-  pname = "bfs";
-  version = "4.0.2";
-
-  src = fetchFromGitHub {
-    repo = "bfs";
-    owner = "tavianator";
-    rev = version;
-    hash = "sha256-WIJyCpnlD6/c7PG+ZPmUT8qfPelRY9Od1Dk9Ro1y1yY=";
-  };
-
-  buildInputs = [ oniguruma ] ++ lib.optionals stdenv.isLinux [ libcap acl liburing ];
-
-  configureFlags = [ "--enable-release" ];
-  makeFlags = [ "PREFIX=$(out)" ];
-
-  meta = with lib; {
-    description = "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.
-    '';
-    homepage = "https://github.com/tavianator/bfs";
-    license = licenses.bsd0;
-    platforms = platforms.unix;
-    maintainers = with maintainers; [ yesbox cafkafk ];
-    mainProgram = "bfs";
-  };
-}