forked from mirrors/nixpkgs
26 lines
572 B
Nix
26 lines
572 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.hardware.saleae-logic;
|
||
|
in
|
||
|
{
|
||
|
options.hardware.saleae-logic = {
|
||
|
enable = lib.mkEnableOption "udev rules for Saleae Logic devices";
|
||
|
|
||
|
package = lib.mkOption {
|
||
|
type = lib.types.package;
|
||
|
default = pkgs.saleae-logic-2;
|
||
|
defaultText = lib.literalExpression "pkgs.saleae-logic-2";
|
||
|
description = ''
|
||
|
Saleae Logic package to use.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.udev.packages = [ cfg.package ];
|
||
|
};
|
||
|
|
||
|
meta.maintainers = with lib.maintainers; [ chivay ];
|
||
|
}
|