mirror of
https://codeberg.org/mart-w/nixos-x13s.git
synced 2024-11-08 17:14:48 +01:00
13 lines
302 B
Makefile
13 lines
302 B
Makefile
all:
|
|
just -l
|
|
|
|
find-targets:
|
|
nix eval .#packages.aarch64-linux --apply 'builtins.attrNames' --json | jq '. | map(".#" + .) | join(" ")' -r > targets
|
|
|
|
build:
|
|
nix build --print-out-paths --keep-going $(cat targets) > outputs
|
|
cat outputs
|
|
|
|
push:
|
|
cachix -- push nixos-x13s $(cat outputs)
|