fix: deprecated calls in pkgs
fix: remove unused enable
This commit is contained in:
parent
b27591a97d
commit
6ecd282976
|
@ -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
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue