From a59474718d0544d530abbe0ba35fed5f8473c0c1 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Mon, 8 Apr 2024 14:31:04 +0200 Subject: [PATCH] jetty: use stdenvNoCC --- pkgs/servers/http/jetty/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/jetty/common.nix b/pkgs/servers/http/jetty/common.nix index 83adac4ddd0d..7c35430e23c1 100644 --- a/pkgs/servers/http/jetty/common.nix +++ b/pkgs/servers/http/jetty/common.nix @@ -1,8 +1,8 @@ { version, hash }: -{ lib, stdenv, fetchurl }: +{ lib, stdenvNoCC, fetchurl }: -stdenv.mkDerivation rec { +stdenvNoCC.mkDerivation rec { pname = "jetty"; inherit version;