mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
22 lines
468 B
Nix
22 lines
468 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.programs.darling;
|
||
|
in {
|
||
|
options = {
|
||
|
programs.darling = {
|
||
|
enable = lib.mkEnableOption (lib.mdDoc "Darling, a Darwin/macOS compatibility layer for Linux");
|
||
|
package = lib.mkPackageOptionMD pkgs "darling" {};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
security.wrappers.darling = {
|
||
|
source = lib.getExe cfg.package;
|
||
|
owner = "root";
|
||
|
group = "root";
|
||
|
setuid = true;
|
||
|
};
|
||
|
};
|
||
|
}
|