about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-12-16 00:02:17 +0000
committerGitHub <noreply@github.com>2022-12-16 00:02:17 +0000
commitb9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4 (patch)
tree3b2ac0cc3172c03aab1a4b0710decbb194da420b /pkgs/development/compilers
parentc2a66b3c22a6188e20175ad564e79b4095739753 (diff)
parentbf012373ca54516c086bed13fad4521766547ae8 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/elm/makeDotElm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/elm/makeDotElm.nix b/pkgs/development/compilers/elm/makeDotElm.nix
index b8076d72e4817..43252747c3a38 100644
--- a/pkgs/development/compilers/elm/makeDotElm.nix
+++ b/pkgs/development/compilers/elm/makeDotElm.nix
@@ -3,7 +3,7 @@
 ver: deps:
   let cmds = lib.mapAttrsToList (name: info: let
                pkg = stdenv.mkDerivation {
-                 name = lib.replaceChars ["/"] ["-"] name + "-${info.version}";
+                 name = lib.replaceStrings ["/"] ["-"] name + "-${info.version}";
 
                  src = fetchurl {
                    url = "https://github.com/${name}/archive/${info.version}.tar.gz";