biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / shells / zsh / zsh-clipboard / default.nix
blob312731e7cb16270745bd43f055579f331075d290
1 { stdenv, lib }:
3 stdenv.mkDerivation rec {
4   pname = "zsh-clipboard";
5   version = "1.0";
7   dontUnpack = true;
8   strictDeps = true;
9   dontBuild = true;
11   installPhase = ''
12     install -D -m0444 -T ${./clipboard.plugin.zsh} $out/share/zsh/plugins/clipboard/clipboard.plugin.zsh
13   '';
15   meta = with lib; {
16     description = "Ohmyzsh plugin that integrates kill-ring with system clipboard";
17     longDescription = ''
18       Ohmyzsh plugin that integrates kill-ring with system clipboard.
20       Key bindings for C-y, C-k, C-u, M-d, M-backspace and M-w are rebound.
21       Behaviour of these keys should not be changed.
22     '';
23     license = licenses.mit;
24     maintainers = with maintainers; [ bb2020 ];
25     platforms = platforms.unix;
26   };