summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarie Ramlow <me@nycode.dev>2024-07-02 11:03:02 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-08-09 07:28:45 +0000
commitb16fb41c560a56d7b64f59a1723c6451103f19e7 (patch)
treef5b078edaf5c7ffca1652b866309258e4ad2f86a
parentmakeGaugePlugin: add autoPatchelfHook (diff)
downloadnixpkgs-origin/backport-323988-to-release-24.05.tar.gz
gaugePlugins.dotnet: add missing dependency on libgccorigin/backport-323988-to-release-24.05
(cherry picked from commit 49626e8c943f4d40063af98a37445e2526ef13dd)
-rw-r--r--pkgs/development/tools/gauge/plugins/dotnet/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/tools/gauge/plugins/dotnet/default.nix b/pkgs/development/tools/gauge/plugins/dotnet/default.nix
index 7cf99f2e7b4f..2b79004073ec 100644
--- a/pkgs/development/tools/gauge/plugins/dotnet/default.nix
+++ b/pkgs/development/tools/gauge/plugins/dotnet/default.nix
@@ -1,6 +1,7 @@
{ lib
, makeGaugePlugin
, gauge-unwrapped
+, stdenv
}:
makeGaugePlugin {
@@ -11,6 +12,8 @@ makeGaugePlugin {
releasePrefix = "gauge-dotnet-";
isCrossArch = true;
+ buildInputs = [ stdenv.cc.cc.lib ];
+
meta = {
description = "Gauge plugin that lets you write tests in C#";
homepage = "https://github.com/getgauge/gauge-dotnet/";