summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Bieber <aaron@bolddaemon.com>2024-01-06 20:20:30 -0700
committerAaron Bieber <aaron@bolddaemon.com>2024-01-06 20:20:30 -0700
commitb824d68e6e3d841aabccf6c6f7c9e054ab90cdeb (patch)
tree7d26096d4254339949dbec491f5de1111c14b417
parent784ef16cd1d263a53a3911fa728c5ec81a8a1c5a (diff)
elmPackages.elm-land: use patchNpmElm
-rw-r--r--pkgs/development/compilers/elm/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix
index 9ae727f93767..e88aa11a872d 100644
--- a/pkgs/development/compilers/elm/default.nix
+++ b/pkgs/development/compilers/elm/default.nix
@@ -274,8 +274,11 @@ in lib.makeScope pkgs.newScope (self: with self; {
}
);
- elm-land = nodePkgs."elm-land".overrideAttrs (
- old: {
+ elm-land =
+ let
+ patched = patchNpmElm nodePkgs.elm-land;
+ in
+ patched.override (old: {
meta = with lib; nodePkgs."elm-land".meta // {
description = "A production-ready framework for building Elm applications.";
homepage = "https://elm.land/";