mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-16 05:18:17 +00:00
7 lines
186 B
Nix
7 lines
186 B
Nix
|
{ lib, writePython3Bin, cytoolz }:
|
||
|
|
||
|
writePython3Bin "generate_commands_plist" {
|
||
|
libraries = [ cytoolz ];
|
||
|
flakeIgnore = [ "E501" ];
|
||
|
} (builtins.readFile ./generate_commands_plist.py)
|