lol

zsh-clipboard: Make independent of Nix file

This way, changing the Nix file won't change the derivation

+2 -3
+2 -3
pkgs/shells/zsh/zsh-clipboard/default.nix
··· 4 4 pname = "zsh-clipboard"; 5 5 version = "1.0"; 6 6 7 - src = ./.; 8 - 7 + dontUnpack = true; 9 8 strictDeps = true; 10 9 dontBuild = true; 11 10 12 11 installPhase = '' 13 - install -D -m0444 -t $out/share/zsh/plugins/clipboard ./clipboard.plugin.zsh 12 + install -D -m0444 -T ${./clipboard.plugin.zsh} $out/share/zsh/plugins/clipboard/clipboard.plugin.zsh 14 13 ''; 15 14 16 15 meta = with lib; {