pico-sdk: 2.1.1 -> 2.2.0 (#441952)

authored by Peder Bergebakken Sundt and committed by GitHub a0dfb225 777ceeb9

+7 -3
+7 -3
pkgs/by-name/pi/pico-sdk/package.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "pico-sdk"; 20 - version = "2.1.1"; 20 + version = "2.2.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "raspberrypi"; ··· 26 26 fetchSubmodules = withSubmodules; 27 27 hash = 28 28 if withSubmodules then 29 - "sha256-8ru1uGjs11S2yQ+aRAvzU53K8mreZ+CC3H+ijfctuqg=" 29 + "sha256-8ubZW6yQnUTYxQqYI6hi7s3kFVQhe5EaxVvHmo93vgk=" 30 30 else 31 - "sha256-epO7yw6/21/ess3vMCkXvXEqAn6/4613zmH/hbaBbUw="; 31 + "sha256-hQdEZD84/cnLSzP5Xr9vbOGROQz4BjeVOnvbyhe6rfM="; 32 32 }; 33 + 34 + cmakeFlags = [ 35 + (lib.cmakeFeature "PIOASM_VERSION_STRING" finalAttrs.version) 36 + ]; 33 37 34 38 nativeBuildInputs = [ cmake ]; 35 39