mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #250009 from gepbird/update-zsh-syntax-highlighting
zsh-syntax-highlighting: 0.7.1 -> 0.8.0
This commit is contained in:
commit
877d8a1383
1 changed files with 6 additions and 6 deletions
|
@ -2,15 +2,15 @@
|
|||
|
||||
# To make use of this derivation, use the `programs.zsh.enableSyntaxHighlighting` option
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.7.1";
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
version = "0.8.0";
|
||||
pname = "zsh-syntax-highlighting";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zsh-users";
|
||||
repo = "zsh-syntax-highlighting";
|
||||
rev = version;
|
||||
sha256 = "03r6hpb5fy4yaakqm3lbf4xcvd408r44jgpv4lnzl9asp4sb9qc0";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-iJdWopZwHpSyYl5/FQXEW7gl/SrKaYDEtTH9cGP7iPo=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
@ -23,6 +23,6 @@ stdenv.mkDerivation rec {
|
|||
homepage = "https://github.com/zsh-users/zsh-syntax-highlighting";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.loskutov ];
|
||||
maintainers = with maintainers; [ gepbird loskutov ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue