about summary refs log tree commit diff
path: root/pkgs/applications/misc/navi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/navi/default.nix')
-rw-r--r--pkgs/applications/misc/navi/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/applications/misc/navi/default.nix b/pkgs/applications/misc/navi/default.nix
deleted file mode 100644
index 23abf6a3546e..000000000000
--- a/pkgs/applications/misc/navi/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ stdenv, fetchFromGitHub, lib, makeWrapper, rustPlatform, wget, libiconv, withFzf ? true, fzf }:
-
-rustPlatform.buildRustPackage rec {
-  pname = "navi";
-  version = "2.23.0";
-
-  src = fetchFromGitHub {
-    owner = "denisidoro";
-    repo = "navi";
-    rev = "v${version}";
-    sha256 = "sha256-pqBTrHBvsuosyQqCnSiI3+pOe2J6XeIQ8dai+kTVFjc=";
-  };
-
-  cargoHash = "sha256-dx13p+kEyqhyaF8ejJLWsgW3IpEvS9nlIHhjxOpp4d8=";
-
-  nativeBuildInputs = [ makeWrapper ];
-
-  buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
-
-  postInstall = ''
-    wrapProgram $out/bin/navi \
-      --prefix PATH : "$out/bin" \
-      --prefix PATH : ${lib.makeBinPath([ wget ] ++ lib.optionals withFzf [ fzf ])}
-  '';
-
-  checkFlags = [
-    # error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
-    "--skip=test_parse_variable_line"
-   ];
-
-  meta = with lib; {
-    description = "Interactive cheatsheet tool for the command-line and application launchers";
-    homepage = "https://github.com/denisidoro/navi";
-    license = licenses.asl20;
-    platforms = platforms.unix;
-    mainProgram = "navi";
-    maintainers = with maintainers; [ cust0dian ];
-  };
-}