about summary refs log tree commit diff
path: root/pkgs/tools/misc/fsearch/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/fsearch/default.nix')
-rw-r--r--pkgs/tools/misc/fsearch/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/pkgs/tools/misc/fsearch/default.nix b/pkgs/tools/misc/fsearch/default.nix
deleted file mode 100644
index 43902b5d99ca..000000000000
--- a/pkgs/tools/misc/fsearch/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, gtk3
-, pcre2
-, glib
-, desktop-file-utils
-, meson
-, ninja
-, pkg-config
-, wrapGAppsHook3
-, gettext
-, icu
-}:
-
-stdenv.mkDerivation rec {
-  pname = "fsearch";
-  version = "0.2.3";
-
-  src = fetchFromGitHub {
-    owner = "cboxdoerfer";
-    repo = pname;
-    rev = version;
-    hash = "sha256-VBcoDxh4ip2zLBcXVHDe9s1lVRQF4bZJKsGUt6sPcos=";
-  };
-
-  nativeBuildInputs = [
-    desktop-file-utils
-    meson
-    ninja
-    pkg-config
-    wrapGAppsHook3
-    gettext
-  ];
-
-  buildInputs = [
-    glib
-    gtk3
-    pcre2
-    icu
-  ];
-
-  preFixup = ''
-    substituteInPlace $out/share/applications/io.github.cboxdoerfer.FSearch.desktop \
-      --replace "Exec=fsearch" "Exec=$out/bin/fsearch"
-  '';
-
-  meta = with lib; {
-    description = "Fast file search utility for Unix-like systems based on GTK+3";
-    homepage = "https://github.com/cboxdoerfer/fsearch.git";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ artturin ];
-    platforms = platforms.unix;
-    mainProgram = "fsearch";
-    broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/fsearch.x86_64-darwin
-  };
-}