fix: deprecated calls in pkgs

fix: remove unused enable
This commit is contained in:
Patrick 2024-04-13 14:27:54 +02:00
parent b27591a97d
commit 6ecd282976
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-BMy9Shy9KAx5+VbvH2WaA0wMFUNM5dqU/dssUNE1NWY="; cargoHash = "sha256-BMy9Shy9KAx5+VbvH2WaA0wMFUNM5dqU/dssUNE1NWY=";
postInstall = '' postInstall = ''
substituteInPlace zsh-histdb-skim-vendored.zsh \ substituteInPlace zsh-histdb-skim-vendored.zsh \
--replace "zsh-histdb-skim" "$out/bin/zsh-histdb-skim" --replace-fail "zsh-histdb-skim" "$out/bin/zsh-histdb-skim"
cp zsh-histdb-skim-vendored.zsh $out/zsh-histdb-skim.plugin.zsh cp zsh-histdb-skim-vendored.zsh $out/zsh-histdb-skim.plugin.zsh
''; '';
} }

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation {
}; };
patchPhase = '' patchPhase = ''
substituteInPlace "sqlite-history.zsh" "histdb-migrate" "histdb-merge" \ substituteInPlace "sqlite-history.zsh" "histdb-migrate" "histdb-merge" \
--replace "sqlite3" "${sqlite}/bin/sqlite3" --replace-fail "sqlite3" "${sqlite}/bin/sqlite3"
''; '';
installPhase = '' installPhase = ''
mkdir -p $out mkdir -p $out

View file

@ -14,7 +14,7 @@
programs.fzf.enable = true; programs.fzf.enable = true;
programs.carapace = { programs.carapace = {
enable = true; enable = false;
# this would source all completers sadly some are worse than the builtin completers # this would source all completers sadly some are worse than the builtin completers
enableZshIntegration = false; enableZshIntegration = false;
}; };