about summary refs log tree commit diff
path: root/pkgs/by-name/lu
diff options
context:
space:
mode:
authorLucius Hu <1222865+lebensterben@users.noreply.github.com>2024-05-22 11:49:22 -0400
committerGitHub <noreply@github.com>2024-05-22 15:49:22 +0000
commit08380cb6136cf7d5ab147c7bf870323c5bf518c5 (patch)
treeb22ce9937806783ebb2e53ae8eac8e79b3c5952b /pkgs/by-name/lu
parent1779bbbf2f9d318413468167413bf6d589cad908 (diff)
lunarvim: 1.3.0 -> 1.4.0 (#313451)
See release note: <https://github.com/LunarVim/LunarVim/releases/tag/1.4.0>

Removed a temporary patch which is upstreamed, and added myself as a new maintainer.
Diffstat (limited to 'pkgs/by-name/lu')
-rw-r--r--pkgs/by-name/lu/lunarvim/package.nix17
1 files changed, 3 insertions, 14 deletions
diff --git a/pkgs/by-name/lu/lunarvim/package.nix b/pkgs/by-name/lu/lunarvim/package.nix
index 5dcd5585ea2ee..6050010bdbb5c 100644
--- a/pkgs/by-name/lu/lunarvim/package.nix
+++ b/pkgs/by-name/lu/lunarvim/package.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, fetchpatch
 , makeWrapper
 , cargo
 , curl
@@ -29,25 +28,15 @@ stdenv.mkDerivation (finalAttrs: {
   inherit nvimAlias viAlias vimAlias globalConfig;
 
   pname = "lunarvim";
-  version = "1.3.0";
+  version = "1.4.0";
 
   src = fetchFromGitHub {
     owner = "LunarVim";
     repo = "LunarVim";
     rev = "refs/tags/${finalAttrs.version}";
-    hash = "sha256-z1Cw3wGpFDmlrAIy7rrjlMtzcW7a6HWSjI+asEDcGPA=";
+    hash = "sha256-uuXaDvZ9VaRJlZrdu28gawSOJFVSo5XX+JG53IB+Ijw=";
   };
 
-  # Pull in the fix for Nerd Fonts until the next release
-  patches = [
-    (
-      fetchpatch {
-        url = "https://github.com/LunarVim/LunarVim/commit/d187cbd03fbc8bd1b59250869e0e325518bf8798.patch";
-        sha256 = "sha256-ktkQ2GiIOhbVOMjy1u5Bf8dJP4SXHdG4j9OEFa9Fm7w=";
-      }
-    )
-  ];
-
   nativeBuildInputs = [
     gnused
     makeWrapper
@@ -140,7 +129,7 @@ stdenv.mkDerivation (finalAttrs: {
     changelog = "https://github.com/LunarVim/LunarVim/blob/${finalAttrs.src.rev}/CHANGELOG.md";
     sourceProvenance = with sourceTypes; [ fromSource ];
     license = licenses.gpl3Only;
-    maintainers = with maintainers; [ prominentretail ];
+    maintainers = with maintainers; [ prominentretail lebensterben ];
     platforms = platforms.unix;
     mainProgram = "lvim";
   };