Merge pull request #289711 from trofi/libcbor-update

libcbor: 0.10.2 -> 0.11.0

authored by Mario Rodas and committed by GitHub 7dcecd73 ac95e31c

+2 -14
+2 -14
pkgs/development/libraries/libcbor/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , cmake 6 5 , cmocka 7 6 ··· 14 13 15 14 stdenv.mkDerivation (finalAttrs: { 16 15 pname = "libcbor"; 17 - version = "0.10.2"; 16 + version = "0.11.0"; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "PJK"; 21 20 repo = "libcbor"; 22 21 rev = "v${finalAttrs.version}"; 23 - hash = "sha256-eE11hYPsOKqfoX8fx/oYfOAichhUe4mMpNQNVZ6vAUI="; 22 + hash = "sha256-N1xYkZw/6lX/nX/TE6/pVuEFgSyDiUJ50msK42NrKwI="; 24 23 }; 25 24 26 25 outputs = [ "out" "dev" ]; 27 - 28 - patches = [ 29 - # Pull fix pending upstream inclusion to support 30 - # `CMAKE_INSTALL_INCLUDEDIR`: 31 - # https://github.com/PJK/libcbor/pull/297 32 - (fetchpatch { 33 - name = "includedir.patch"; 34 - url = "https://github.com/PJK/libcbor/commit/d00a63e6d6858a2ed6be9b431b42799ed2c99ad8.patch"; 35 - hash = "sha256-kBCSbAHOCGOs/4Yu6Vh0jcmzA/jYPkkPXPGPrptRfyk="; 36 - }) 37 - ]; 38 26 39 27 strictDeps = true; 40 28 nativeBuildInputs = [ cmake ];