Skip to content

Commit

Permalink
add pkgs from NixOS/nixpkgs#255185
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Huber <[email protected]>
  • Loading branch information
maxhbr committed Jan 18, 2024
1 parent ccaed77 commit fa8d479
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@
nrf-command-line-tools = pkgs.callPackage ./pkgs_from_pr_255185/nrf-command-line-tools {
segger-jlink = self.packages."${system}".segger-jlink;
};
nrfconnect = pkgs.callPackage ./pkgs_from_pr_255185/nrfconnect { };
nrfconnect = pkgs.callPackage ./pkgs_from_pr_255185/nrfconnect {
segger-jlink = self.packages."${system}".segger-jlink;
};
segger-jlink = pkgs.callPackage ./pkgs_from_pr_255185/segger-jlink { };
});

Expand Down Expand Up @@ -271,6 +273,7 @@

nixosModules.zephyr = ({ config, lib, pkgs, ... }:
let
inherit (pkgs.stdenv.hostPlatform) system;
# platformio-udev-rules = pkgs.writeTextFile {
# name = "platformio-udev-rules";
# text = builtins.readFile
Expand All @@ -296,6 +299,8 @@
# pkgs.segger-jlink
pkgs.stlink
pkgs.teensy-udev-rules

self.packages."${system}".segger-jlink
];
});

Expand Down
1 change: 1 addition & 0 deletions pkgs_from_pr_255185/nrfconnect/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, fetchurl
, appimageTools
, segger-jlink
}:

let
Expand Down

0 comments on commit fa8d479

Please sign in to comment.