]> git.scottworley.com Git - tattlekey/commitdiff
client: Get lwipopts.h from pico-examples
authorScott Worley <scottworley@scottworley.com>
Fri, 29 Sep 2023 21:39:32 +0000 (14:39 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 11 Oct 2023 01:47:32 +0000 (18:47 -0700)
client/default.nix

index a2bbf91ac984bde432f6fdd23bf3e7b2e6c73615..eb65f49b6b488219d05b556f53310f4fb746261d 100644 (file)
@@ -1,12 +1,16 @@
 { pkgs ? import <nixpkgs> { }, }:
 let
 
-  tattlekey = { lib, stdenv, cmake, pico-sdk, python3 }:
+  tattlekey = { lib, stdenv, cmake, pico-sdk, pico-examples, python3 }:
     stdenv.mkDerivation {
       pname = "tattlekey";
       version = "0.0.1";
       src = lib.cleanSource ./.;
       nativeBuildInputs = [ cmake python3 ];
+      postUnpack = ''
+        # Per https://datasheets.raspberrypi.com/picow/connecting-to-the-internet-with-pico-w.pdf page 9
+        cp ${pico-examples}/pico_w/wifi/lwipopts_examples_common.h lwipopts.h
+      '';
       cmakeFlags = [
         "-DCMAKE_C_COMPILER=/usr/bin/arm-none-eabi-gcc"
         "-DCMAKE_CXX_COMPILER=/usr/bin/arm-none-eabi-c++"
@@ -17,17 +21,27 @@ let
       diskImageFormat = "qcow2";
     };
 
-  pico-sdk = pkgs.pico-sdk.overrideAttrs (old: rec {
-    version = "1.5.1";
+  pico-sdk-version = "1.5.1";
+
+  pico-sdk = pkgs.pico-sdk.overrideAttrs (old: {
+    version = pico-sdk-version;
     src = pkgs.fetchFromGitHub {
       fetchSubmodules = true;
       owner = "raspberrypi";
       repo = "pico-sdk";
-      rev = version;
+      rev = pico-sdk-version;
       hash = "sha256-GY5jjJzaENL3ftuU5KpEZAmEZgyFRtLwGVg3W1e/4Ho=";
     };
   });
 
+  pico-examples = pkgs.fetchFromGitHub {
+      fetchSubmodules = true;
+      owner = "raspberrypi";
+      repo = "pico-examples";
+      rev = "sdk-${pico-sdk-version}";
+      hash = "sha256-mJIOWUqsQJcg7FUWZePf+pA/YblZskDtIVnUJiz7szU=";
+    };
+
   distro = "debian11x86_64";
 
   extraPackages = [
@@ -41,4 +55,4 @@ let
   debImage = pkgs.vmTools.diskImageFuns."${distro}" { inherit extraPackages; };
 
 in pkgs.vmTools.runInLinuxImage
-(pkgs.callPackage tattlekey { pico-sdk = pico-sdk; })
+(pkgs.callPackage tattlekey { inherit pico-examples pico-sdk; })