Merge pull request #142770 from trofi/fix-parallel-libb64
This commit is contained in:
commit
d8baf19f43
1 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libb64";
|
||||
|
@ -11,6 +11,18 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-9loDftr769qnIi00MueO86kjha2EiG9pnCLogp0Iq3c=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix parallel build failure: https://github.com/libb64/libb64/pull/9
|
||||
# make[1]: *** No rule to make target 'libb64.a', needed by 'c-example1'. Stop.
|
||||
(fetchpatch {
|
||||
name = "parallel-make.patch";
|
||||
url = "https://github.com/libb64/libb64/commit/4fe47c052e9123da8f751545deb48be08c3411f6.patch";
|
||||
sha256 = "18b3np3gpyzimqmk6001riqv5n70wfbclky6zzsrvj5zl1dj4ljf";
|
||||
})
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out $out/lib $out/bin $out/include
|
||||
cp -r include/* $out/include/
|
||||
|
|
Loading…
Reference in a new issue