lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #304513 from viraptor/cjose-darwin

cjose: fix darwin build

authored by

Stanisław Pitucha and committed by
GitHub
4e3275f6 00ff7779

+9
+9
pkgs/development/libraries/cjose/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , autoreconfHook 5 6 , pkg-config 6 7 , doxygen ··· 19 20 rev = "v${version}"; 20 21 sha256 = "sha256-vDvCxMpgCdteGvNxy2HCNRaxbhxOuTadL0nM2wkFHtk="; 21 22 }; 23 + 24 + patches = [ 25 + # avoid using empty prototypes; support Clang 15 and XCode 14.3 - https://github.com/OpenIDC/cjose/pull/19 26 + (fetchpatch { 27 + url = "https://github.com/OpenIDC/cjose/commit/63e90cf464d6a470e26886435e8d7d96a66747f6.patch"; 28 + hash = "sha256-+C5AIejb9InOGiOgUNfuP89J18O71rnq1pXyroxEDFQ="; 29 + }) 30 + ]; 22 31 23 32 nativeBuildInputs = [ autoreconfHook pkg-config doxygen ]; 24 33 buildInputs = [ jansson openssl ];