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 51fb780 commit 44dc043
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
nixpkgsFor = forAllSystems (system: import nixpkgs {
inherit system;
config.allowUnfree = true; # :(
config.segger-jlink.acceptLicense = true;
config.permittedInsecurePackages = [
"segger-jlink-qt4-794a"
];
});

lastModifiedDate =
Expand Down Expand Up @@ -219,7 +223,9 @@


# from https://github.com/NixOS/nixpkgs/pull/255185
nrf-command-line-tools = pkgs.callPackage ./pkgs_from_pr_255185/nrf-command-line-tools { };
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 {
acceptLicense = true;
};
Expand Down

0 comments on commit 44dc043

Please sign in to comment.