Merge pull request #261169 from trofi/mailsend-parallel-fix
mailsend: fix parallel build failures
This commit is contained in:
commit
9606c209b8
1 changed files with 16 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
||||||
{ lib, stdenv, fetchurl, openssl }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, fetchpatch
|
||||||
|
, openssl
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mailsend";
|
pname = "mailsend";
|
||||||
|
@ -21,7 +26,17 @@ stdenv.mkDerivation rec {
|
||||||
url = "https://github.com/muquit/mailsend/commit/960df6d7a11eef90128dc2ae660866b27f0e4336.patch";
|
url = "https://github.com/muquit/mailsend/commit/960df6d7a11eef90128dc2ae660866b27f0e4336.patch";
|
||||||
sha256 = "0vz373zcfl19inflybfjwshcq06rvhx0i5g0f4b021cxfhyb1sm0";
|
sha256 = "0vz373zcfl19inflybfjwshcq06rvhx0i5g0f4b021cxfhyb1sm0";
|
||||||
})
|
})
|
||||||
|
# Pull fix pending upstream inclusion for parallel build failures:
|
||||||
|
# https://github.com/muquit/mailsend/pull/165
|
||||||
|
(fetchpatch {
|
||||||
|
name = "parallel-install.patch";
|
||||||
|
url = "https://github.com/muquit/mailsend/commit/acd4ebedbce0e4af3c7b6632f905f73e642ca38c.patch";
|
||||||
|
hash = "sha256-p8tNnkU6cMopuP63kVtRbD9aenhzL1EAXlvvFh4fucE=";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "CLI email sending tool";
|
description = "CLI email sending tool";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
Loading…
Reference in a new issue