mawk: fix cross compilation
This commit is contained in:
parent
3dbdb44d88
commit
491c395163
1 changed files with 3 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue