about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorStanisław Pitucha <git@viraptor.info>2024-04-12 09:29:40 +1000
committerStanisław Pitucha <git@viraptor.info>2024-04-12 09:29:40 +1000
commit078dca4b1e60f1fcd6f6f0c5017e76d532032c62 (patch)
treedf9474b207ccde4bdb9c45fa3ba21ca4f500f0a7 /pkgs/applications/editors
parent5581753106b5e17306ed5bbe5aff4d8fd1442b2c (diff)
aewan: fix darwin build
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/aewan/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/editors/aewan/default.nix b/pkgs/applications/editors/aewan/default.nix
index 6e817646d9e75..dcc59560a246d 100644
--- a/pkgs/applications/editors/aewan/default.nix
+++ b/pkgs/applications/editors/aewan/default.nix
@@ -1,5 +1,7 @@
-{ lib, stdenv, fetchurl, fetchpatch, zlib, ncurses }:
+{ lib, gccStdenv, fetchurl, fetchpatch, zlib, ncurses }:
 
+let stdenv = gccStdenv;
+in
 stdenv.mkDerivation rec {
   pname = "aewan";
   version = "1.0.01";