about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-28 18:26:50 -0500
committerGitHub <noreply@github.com>2024-03-28 18:26:50 -0500
commit789b419d651267f052f08096e713be0924193c87 (patch)
treeef0501b4422619c14e4874c220ff54a080f1dc1c
parentddaedd983d2f7bdc646667da20d72a2bf5125ab0 (diff)
parent0dd53145bffd9410dbebd92ae4062455de718c89 (diff)
downloadnixlib-789b419d651267f052f08096e713be0924193c87.tar
nixlib-789b419d651267f052f08096e713be0924193c87.tar.gz
nixlib-789b419d651267f052f08096e713be0924193c87.tar.bz2
nixlib-789b419d651267f052f08096e713be0924193c87.tar.lz
nixlib-789b419d651267f052f08096e713be0924193c87.tar.xz
nixlib-789b419d651267f052f08096e713be0924193c87.tar.zst
nixlib-789b419d651267f052f08096e713be0924193c87.zip
Merge pull request #299689 from aaronjheng/d2
d2: fix build
-rw-r--r--pkgs/top-level/all-packages.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 4268cd155f0a..2a2eb37fa0ca 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7835,7 +7835,10 @@ with pkgs;
 
   choose = callPackage ../tools/text/choose { };
 
-  d2 = callPackage ../tools/text/d2 { };
+  d2 = callPackage ../tools/text/d2 {
+    # Failed tests
+    buildGoModule = buildGo121Module;
+  };
 
   ddev = callPackage ../applications/virtualization/ddev { };