mawk: fix cross compilation

This commit is contained in:
Nick Cao 2023-05-13 13:25:08 +08:00 committed by Emery Hemingway
parent 3dbdb44d88
commit 491c395163

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, buildPackages }:
stdenv.mkDerivation rec {
pname = "mawk";
@ -12,6 +12,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-bbejKsecURB60xpAfU+SxrhC3eL2inUztOe3sD6JAL4=";
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
meta = with lib; {
description = "Interpreter for the AWK Programming Language";
homepage = "https://invisible-island.net/mawk/mawk.html";