Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #55619 from dtzWill/update/ninja-1.9.0-fix-musl

ninja: patch to fix w/musl, see upstream issue

authored by

Will Dietz and committed by
GitHub
173d12a4 32a7d27a

+7
+7
pkgs/development/tools/build-managers/ninja/default.nix
··· 20 20 url = "https://github.com/ninja-build/ninja/commit/9aa947471fcfc607bec6d92a1a6eed5c692edbaf.patch"; 21 21 sha256 = "0zsg46jflsh644jccrcgyfalr7fkzrv041kyi8644nyk923gcrl9"; 22 22 }) 23 + # https://github.com/ninja-build/ninja/issues/1510 - fix w/musl, possibly BSDs? 24 + # 25 + (fetchpatch { 26 + name = "fix-issue-1510.patch"; 27 + url = https://github.com/makepost/ninja/commit/567815df38a2ff54ad7478a90bd75c91e434236a.patch; 28 + sha256 = "0zd0xyi7h2066nw1dsk76c7yf71b0f7v4p5nljda7jxi01vpdh69"; 29 + }) 23 30 ]; 24 31 25 32 nativeBuildInputs = [ python re2c ] ++ optionals buildDocs [ asciidoc docbook_xml_dtd_45 docbook_xsl libxslt.bin ];