Merge pull request #142770 from trofi/fix-parallel-libb64

This commit is contained in:
Sandro 2021-10-25 14:00:45 +02:00 committed by GitHub
commit d8baf19f43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/