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 { lib 2 , stdenv 3 , fetchFromGitHub 4 - , fetchpatch 5 , cmake 6 , cmocka 7 ··· 14 15 stdenv.mkDerivation (finalAttrs: { 16 pname = "libcbor"; 17 - version = "0.10.2"; 18 19 src = fetchFromGitHub { 20 owner = "PJK"; 21 repo = "libcbor"; 22 rev = "v${finalAttrs.version}"; 23 - hash = "sha256-eE11hYPsOKqfoX8fx/oYfOAichhUe4mMpNQNVZ6vAUI="; 24 }; 25 26 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 39 strictDeps = true; 40 nativeBuildInputs = [ cmake ];
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 , cmocka 6 ··· 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "libcbor"; 16 + version = "0.11.0"; 17 18 src = fetchFromGitHub { 19 owner = "PJK"; 20 repo = "libcbor"; 21 rev = "v${finalAttrs.version}"; 22 + hash = "sha256-N1xYkZw/6lX/nX/TE6/pVuEFgSyDiUJ50msK42NrKwI="; 23 }; 24 25 outputs = [ "out" "dev" ]; 26 27 strictDeps = true; 28 nativeBuildInputs = [ cmake ];