1
1
Fork
You've already forked j-link-flake
1
A Nix flake for SEGGER J-Link.
  • Nix 100%
2024年10月06日 22:47:30 +03:00
.github Bump cachix/install-nix-action from V28 to 29 2024年10月01日 08:35:11 +03:00
data Automatic package update 2024年10月03日 03:42:26 +00:00
pkgs/j-link Improve installation phase 2024年10月06日 22:47:30 +03:00
.gitignore Hello world 2021年05月05日 22:24:57 +03:00
flake.nix Add nixosModules.default 2022年12月29日 13:02:00 +02:00
LICENSE Add unlicense 2023年06月26日 12:15:02 +03:00
README.md Enable unfree packages unconditionally 2022年01月22日 11:27:48 +02:00
update Fix up-to-date announcement 2021年10月03日 13:02:58 +03:00

A Nix flake for SEGGER J-Link.

The package version is automatically updated daily.

Usage

In addition to the j-link package and app, this Flake provides a NixOS module that installs the package and sets up the USB device permissions.

{
 inputs.j-link.url = "github:liff/j-link-flake";
 outputs = { self, nixpkgs, j-link }: {
 # replace 'joes-desktop' with your hostname here.
 nixosConfigurations.joes-desktop = nixpkgs.lib.nixosSystem {
 system = "x86_64-linux";
 modules = [
 # ...
 j-link.nixosModule
 ];
 };
 };
}

Note on unfree packages

Due to limitations of flakes, this flake enables config.allowUnfree on its import of nixpkgs, meaining that packages can be built without otherwise enabling unfree software.