summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-05-20 02:56:11 +0300
committerGitHub <noreply@github.com>2023-05-20 02:56:11 +0300
commit1362b2c8d6d82c435bc428292b5868c42e443ad9 (patch)
tree30862422e8e8c9a6d2bf307067e9f27dcf11ac15
parent191f1a50b8e89a1b86debca5f65665b31b0bc846 (diff)
parent38ed4d99adb22bb5b20d44cdea4b687240223dd3 (diff)
downloadnixpkgs-1362b2c8d6d82c435bc428292b5868c42e443ad9.tar
nixpkgs-1362b2c8d6d82c435bc428292b5868c42e443ad9.tar.gz
nixpkgs-1362b2c8d6d82c435bc428292b5868c42e443ad9.tar.bz2
nixpkgs-1362b2c8d6d82c435bc428292b5868c42e443ad9.tar.lz
nixpkgs-1362b2c8d6d82c435bc428292b5868c42e443ad9.tar.xz
nixpkgs-1362b2c8d6d82c435bc428292b5868c42e443ad9.tar.zst
nixpkgs-1362b2c8d6d82c435bc428292b5868c42e443ad9.zip
Merge pull request #232772 from trofi/alpine-cc-wrapper
alpine: pull CC_FOR_BUILD
-rw-r--r--pkgs/applications/networking/mailreaders/alpine/default.nix16
1 files changed, 14 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mailreaders/alpine/default.nix b/pkgs/applications/networking/mailreaders/alpine/default.nix
index 99304cfef08..82239761190 100644
--- a/pkgs/applications/networking/mailreaders/alpine/default.nix
+++ b/pkgs/applications/networking/mailreaders/alpine/default.nix
@@ -1,5 +1,15 @@
-{ lib, stdenv, fetchgit, ncurses, tcl, openssl, pam, libkrb5
-, openldap, libxcrypt, gitUpdater
+{ lib
+, stdenv
+, fetchgit
+, buildPackages
+, ncurses
+, tcl
+, openssl
+, pam
+, libkrb5
+, openldap
+, libxcrypt
+, gitUpdater
 }:
 
 stdenv.mkDerivation rec {
@@ -12,6 +22,8 @@ stdenv.mkDerivation rec {
     hash = "sha256-cJyUBatQBjD6RG+jesJ0JRhWghPRBACc/HQl+2aCTd0=";
   };
 
+  depsBuildBuild = [ buildPackages.stdenv.cc ];
+
   buildInputs = [
     ncurses tcl openssl pam libkrb5 openldap libxcrypt
   ];