clan-core/pkgs/clan-cli/clan_cli/nix.py

114 lines
3.0 KiB
Python
Raw Normal View History

import json
import os
import tempfile
from pathlib import Path
from typing import Any
from .cmd import run, run_no_stdout
from .dirs import nixpkgs_flake, nixpkgs_source
2023-11-21 17:13:30 +00:00
2023-09-13 14:01:03 +00:00
2023-09-15 14:22:05 +00:00
def nix_command(flags: list[str]) -> list[str]:
2023-11-29 11:38:00 +00:00
return ["nix", "--extra-experimental-features", "nix-command flakes", *flags]
2023-09-15 14:22:05 +00:00
2023-11-21 10:36:50 +00:00
def nix_flake_show(flake_url: str | Path) -> list[str]:
return nix_command(
[
"flake",
"show",
"--json",
"--show-trace",
2023-10-31 18:05:07 +00:00
"--no-write-lock-file",
f"{flake_url}",
]
)
2023-11-21 17:13:30 +00:00
2023-12-30 23:49:57 +00:00
def nix_build(flags: list[str], gcroot: Path | None = None) -> list[str]:
if gcroot is not None:
return (
nix_command(
[
"build",
"--out-link",
str(gcroot),
"--print-out-paths",
"--no-write-lock-file",
]
)
+ flags
)
else:
return (
nix_command(
[
"build",
"--no-link",
"--print-out-paths",
"--no-write-lock-file",
]
)
+ flags
2023-09-15 14:22:05 +00:00
)
2023-11-21 17:13:30 +00:00
def nix_add_to_gcroots(nix_path: Path, dest: Path) -> None:
cmd = ["nix-store", "--realise", f"{nix_path}", "--add-root", f"{dest}"]
run(cmd)
def nix_config() -> dict[str, Any]:
cmd = nix_command(["show-config", "--json"])
proc = run_no_stdout(cmd)
data = json.loads(proc.stdout)
config = {}
for key, value in data.items():
config[key] = value["value"]
return config
2023-11-21 17:13:30 +00:00
def nix_eval(flags: list[str]) -> list[str]:
2023-09-15 14:22:05 +00:00
default_flags = nix_command(
[
"eval",
"--show-trace",
"--json",
2023-10-31 18:05:07 +00:00
"--no-write-lock-file",
2023-09-15 14:22:05 +00:00
]
)
2023-09-15 11:44:04 +00:00
if os.environ.get("IN_NIX_SANDBOX"):
with tempfile.TemporaryDirectory() as nix_store:
2023-11-29 11:38:00 +00:00
return [
*default_flags,
"--override-input",
"nixpkgs",
str(nixpkgs_source()),
# --store is required to prevent this error:
# error: cannot unlink '/nix/store/6xg259477c90a229xwmb53pdfkn6ig3g-default-builder.sh': Operation not permitted
"--store",
nix_store,
*flags,
]
2023-09-15 11:44:04 +00:00
return default_flags + flags
2023-11-21 17:13:30 +00:00
def nix_metadata(flake_url: str | Path) -> dict[str, Any]:
cmd = nix_command(["flake", "metadata", "--json", f"{flake_url}"])
2024-01-03 13:25:34 +00:00
proc = run(cmd)
data = json.loads(proc.stdout)
return data
def nix_shell(packages: list[str], cmd: list[str]) -> list[str]:
# we cannot use nix-shell inside the nix sandbox
# in our tests we just make sure we have all the packages
if os.environ.get("IN_NIX_SANDBOX"):
return cmd
return [
*nix_command(["shell", "--inputs-from", f"{nixpkgs_flake()!s}"]),
*packages,
"-c",
*cmd,
]