mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
tmuxPlugins: removed phony dependencies attribute
The `dependencies` attribute in mkTmuxPlugin has deceived contributors into thinking it makes packages available to the plugin at runtime. To avoid further confusion the attribute is removed and plugins that used it fixed. Example PRs where `dependencies` has confused. - https://github.com/NixOS/nixpkgs/pull/113726#discussion_r591146399 - https://github.com/NixOS/nixpkgs/pull/95275/files#r522817362
This commit is contained in:
parent
268aa0d37b
commit
74407651cf
@ -24,10 +24,11 @@ let
|
|||||||
preInstall ? "",
|
preInstall ? "",
|
||||||
postInstall ? "",
|
postInstall ? "",
|
||||||
path ? lib.getName pluginName,
|
path ? lib.getName pluginName,
|
||||||
dependencies ? [],
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
addRtp "${rtpPath}/${path}" rtpFilePath a (stdenv.mkDerivation (a // {
|
if lib.hasAttr "dependencies" a then
|
||||||
|
throw "dependencies attribute is obselete. see NixOS/nixpkgs#118034" # added 2021-04-01
|
||||||
|
else addRtp "${rtpPath}/${path}" rtpFilePath a (stdenv.mkDerivation (a // {
|
||||||
pname = namePrefix + pluginName;
|
pname = namePrefix + pluginName;
|
||||||
|
|
||||||
inherit pluginName unpackPhase configurePhase buildPhase addonInfo preInstall postInstall;
|
inherit pluginName unpackPhase configurePhase buildPhase addonInfo preInstall postInstall;
|
||||||
@ -44,8 +45,6 @@ let
|
|||||||
|
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
dependencies = [ pkgs.bash ] ++ dependencies;
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
in rec {
|
in rec {
|
||||||
@ -73,7 +72,6 @@ in rec {
|
|||||||
rev = "26eb5ffce0b559d682b9f98c8d4b6c370ecb639b";
|
rev = "26eb5ffce0b559d682b9f98c8d4b6c370ecb639b";
|
||||||
sha256 = "1glwa89bv2r92qz579a49prk3jf612cpd5hw46j4wfb35xhnj3ab";
|
sha256 = "1glwa89bv2r92qz579a49prk3jf612cpd5hw46j4wfb35xhnj3ab";
|
||||||
};
|
};
|
||||||
dependencies = [ resurrect ];
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/tmux-plugins/tmux-continuum";
|
homepage = "https://github.com/tmux-plugins/tmux-continuum";
|
||||||
description = "continous saving of tmux environment";
|
description = "continous saving of tmux environment";
|
||||||
@ -156,7 +154,15 @@ in rec {
|
|||||||
sha256 = "0gp37m3d0irrsih96qv2yalvr1wmf1n64589d4qzyzq16lzyjcr0";
|
sha256 = "0gp37m3d0irrsih96qv2yalvr1wmf1n64589d4qzyzq16lzyjcr0";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
dependencies = [ pkgs.gawk ];
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||||
|
postInstall = ''
|
||||||
|
for f in config.sh tmux-fingers.sh setup-fingers-mode-bindings.sh; do
|
||||||
|
wrapProgram $target/scripts/$f \
|
||||||
|
--prefix PATH : ${with pkgs; lib.makeBinPath (
|
||||||
|
[ gawk ] ++ lib.optionals stdenv.isDarwin [ reattach-to-user-namespace ]
|
||||||
|
)}
|
||||||
|
done
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
fpp = mkTmuxPlugin {
|
fpp = mkTmuxPlugin {
|
||||||
@ -171,7 +177,6 @@ in rec {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
sed -i -e 's|fpp |${pkgs.fpp}/bin/fpp |g' $target/fpp.tmux
|
sed -i -e 's|fpp |${pkgs.fpp}/bin/fpp |g' $target/fpp.tmux
|
||||||
'';
|
'';
|
||||||
dependencies = [ pkgs.fpp ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
fzf-tmux-url = mkTmuxPlugin {
|
fzf-tmux-url = mkTmuxPlugin {
|
||||||
@ -211,8 +216,6 @@ in rec {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
sed -i -e 's|ruby|${pkgs.ruby}/bin/ruby|g' $target/scripts/tmux-jump.sh
|
sed -i -e 's|ruby|${pkgs.ruby}/bin/ruby|g' $target/scripts/tmux-jump.sh
|
||||||
'';
|
'';
|
||||||
dependencies = [ pkgs.ruby ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/schasse/tmux-jump";
|
homepage = "https://github.com/schasse/tmux-jump";
|
||||||
description = "Vimium/Easymotion like navigation for tmux";
|
description = "Vimium/Easymotion like navigation for tmux";
|
||||||
@ -477,7 +480,7 @@ in rec {
|
|||||||
find $target -type f -print0 | xargs -0 sed -i -e 's|sed |${pkgs.gnused}/bin/sed |g'
|
find $target -type f -print0 | xargs -0 sed -i -e 's|sed |${pkgs.gnused}/bin/sed |g'
|
||||||
find $target -type f -print0 | xargs -0 sed -i -e 's|tput |${pkgs.ncurses}/bin/tput |g'
|
find $target -type f -print0 | xargs -0 sed -i -e 's|tput |${pkgs.ncurses}/bin/tput |g'
|
||||||
'';
|
'';
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/sainnhe/tmux-fzf";
|
homepage = "https://github.com/sainnhe/tmux-fzf";
|
||||||
description = "Use fzf to manage your tmux work environment! ";
|
description = "Use fzf to manage your tmux work environment! ";
|
||||||
longDescription =
|
longDescription =
|
||||||
@ -510,7 +513,6 @@ in rec {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
sed -i -e '14,20{s|urlview|${pkgs.urlview}/bin/urlview|g}' $target/urlview.tmux
|
sed -i -e '14,20{s|urlview|${pkgs.urlview}/bin/urlview|g}' $target/urlview.tmux
|
||||||
'';
|
'';
|
||||||
dependencies = [ pkgs.urlview ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
vim-tmux-focus-events = mkTmuxPlugin {
|
vim-tmux-focus-events = mkTmuxPlugin {
|
||||||
|
Loading…
Reference in New Issue
Block a user