gaugePlugins.dotnet: add missing dependency on libgcc

This commit is contained in:
Marie Ramlow 2024-07-02 11:03:02 +02:00
parent a691eb42d9
commit 49626e8c94

View File

@ -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/";