base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / zs / zsh-system-clipboard / package.nix
blob3cfe47e77f707fee10206c9df452d5df45e2ae28
1 { stdenv, lib, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "zsh-system-clipboard";
5   version = "0.8.0";
7   src = fetchFromGitHub {
8     owner = "kutsan";
9     repo = "zsh-system-clipboard";
10     rev = "v${version}";
11     hash = "sha256-VWTEJGudlQlNwLOUfpo0fvh0MyA2DqV+aieNPx/WzSI=";
12   };
14   strictDeps = true;
15   installPhase = ''
16     install -D zsh-system-clipboard.zsh $out/share/zsh/${pname}/zsh-system-clipboard.zsh
17   '';
19   meta = with lib; {
20     homepage = "https://github.com/kutsan/zsh-system-clipboard";
21     description = "Plugin that adds key bindings support for ZLE (Zsh Line Editor) clipboard operations for vi emulation keymaps";
22     license = licenses.gpl3Only;
23     maintainers = with maintainers; [ _0qq satoqz ];
24     platforms = platforms.all;
25   };