mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
parent
5e882ea558
commit
9f34b5595e
@ -84,6 +84,14 @@ in
|
||||
type = types.bool;
|
||||
};
|
||||
|
||||
enableSyntaxHighlighting = mkOption {
|
||||
default = false;
|
||||
description = ''
|
||||
Enable zsh-syntax-highlighting
|
||||
'';
|
||||
type = types.bool;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
@ -120,6 +128,10 @@ in
|
||||
|
||||
${if cfg.enableCompletion then "autoload -U compinit && compinit" else ""}
|
||||
|
||||
${optionalString (cfg.enableSyntaxHighlighting)
|
||||
"source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
||||
}
|
||||
|
||||
HELPDIR="${pkgs.zsh}/share/zsh/$ZSH_VERSION/help"
|
||||
'';
|
||||
|
||||
@ -182,7 +194,8 @@ in
|
||||
environment.etc."zinputrc".source = ./zinputrc;
|
||||
|
||||
environment.systemPackages = [ pkgs.zsh ]
|
||||
++ optional cfg.enableCompletion pkgs.nix-zsh-completions;
|
||||
++ optional cfg.enableCompletion pkgs.nix-zsh-completions
|
||||
++ optional cfg.enableSyntaxHighlighting pkgs.zsh-syntax-highlighting;
|
||||
|
||||
environment.pathsToLink = optional cfg.enableCompletion "/share/zsh";
|
||||
|
||||
|
31
pkgs/shells/zsh-syntax-highlighting/default.nix
Normal file
31
pkgs/shells/zsh-syntax-highlighting/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ stdenv, fetchurl, zsh }:
|
||||
|
||||
# To make use of this derivation, use the `programs.zsh.enableSyntaxHighlighting` option
|
||||
|
||||
let
|
||||
|
||||
pkgName = "zsh-syntax-highlighting";
|
||||
version = "0.4.1";
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pkgName}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/zsh-users/${pkgName}/archive/${version}.tar.gz";
|
||||
sha256 = "15sih7blqz11d8wdybx38d91vgcq9jg3q0205r26138si0g9q6wp";
|
||||
};
|
||||
|
||||
buildInputs = [ zsh ];
|
||||
|
||||
installFlags="PREFIX=$(out)";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Fish shell like syntax highlighting for Zsh";
|
||||
homepage = "https://github.com/zsh-users/zsh-syntax-highlighting";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.loskutov ];
|
||||
};
|
||||
}
|
@ -4339,6 +4339,8 @@ in
|
||||
|
||||
zsh-navigation-tools = callPackage ../tools/misc/zsh-navigation-tools { };
|
||||
|
||||
zsh-syntax-highlighting = callPackage ../shells/zsh-syntax-highlighting { };
|
||||
|
||||
zstd = callPackage ../tools/compression/zstd { };
|
||||
|
||||
zsync = callPackage ../tools/compression/zsync { };
|
||||
|
Loading…
Reference in New Issue
Block a user