mirror of
https://github.com/helix-editor/helix
synced 2026-08-02 13:51:19 +02:00
14 lines
305 B
Nix
14 lines
305 B
Nix
{ pkgs, ... }@args:
|
|
# ^ @variable.parameter.builtin
|
|
let
|
|
msg = "${builtins.toString 1}";
|
|
# ^ @function.builtin
|
|
hasit = args ? foo;
|
|
# ^ @variable.other.member
|
|
in
|
|
pkgs.mkDerivation {
|
|
# ^ @function
|
|
meta.license = pkgs.lib.mit;
|
|
# ^ @variable.other.member
|
|
}
|