dtools: fixup build by using older make
This commit is contained in:
parent
ac36665726
commit
3d31187944
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{stdenv, lib, fetchFromGitHub, fetchpatch, ldc, curl}:
|
||||
{ stdenv, lib, fetchFromGitHub, fetchpatch, ldc, curl, gnumake42 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dtools";
|
||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ ldc ];
|
||||
nativeBuildInputs = [ ldc gnumake42 ]; # fails with make 4.4
|
||||
buildInputs = [ curl ];
|
||||
|
||||
makeCmd = ''
|
||||
|
|
Loading…
Reference in a new issue