Skip to content

Commit

Permalink
neovim-unwrapped: 0.10.2 -> 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
r-ryantm authored and GaetanLepage committed Dec 22, 2024
1 parent 0c23a22 commit 53db696
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions pkgs/by-name/ne/neovim-unwrapped/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
fixDarwinDylibNames,
glibcLocales ? null,
procps ? null,
versionCheckHook,
nix-update-script,

# now defaults to false because some tests can be flaky (clipboard etc), see
# also: https://github.com/neovim/neovim/issues/16233
Expand Down Expand Up @@ -95,15 +97,15 @@ stdenv.mkDerivation (
in
{
pname = "neovim-unwrapped";
version = "0.10.2";
version = "0.10.3";

__structuredAttrs = true;

src = fetchFromGitHub {
owner = "neovim";
repo = "neovim";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-+qjjelYMB3MyjaESfCaGoeBURUzSVh/50uxUqStxIfY=";
tag = "v${finalAttrs.version}";
hash = "sha256-nmnEyHE/HcrwK+CyJHNoLG0BqjnWleiBy0UYcJL7Ecc=";
};

patches = [
Expand Down Expand Up @@ -246,6 +248,17 @@ stdenv.mkDerivation (

separateDebugInfo = true;

nativeInstallCheckInputs = [
versionCheckHook
];
versionCheckProgram = "${placeholder "out"}/bin/nvim";
versionCheckProgramArg = [ "--version" ];
doInstallCheck = true;

passthru = {
updateScript = nix-update-script { };
};

meta = {
description = "Vim text editor fork focused on extensibility and agility";
longDescription = ''
Expand All @@ -257,6 +270,7 @@ stdenv.mkDerivation (
- Improve extensibility with a new plugin architecture
'';
homepage = "https://www.neovim.io";
changelog = "https://github.com/neovim/neovim/releases/tag/${finalAttrs.src.tag}";
mainProgram = "nvim";
# "Contributions committed before b17d96 by authors who did not sign the
# Contributor License Agreement (CLA) remain under the Vim license.
Expand Down

0 comments on commit 53db696

Please sign in to comment.