mirror of
https://github.com/NixOS/flake-registry.git
synced 2025-11-08 19:46:12 +01:00
7 lines
179 B
Bash
Executable file
7 lines
179 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Test that the flake-registry.json format is valid
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
nix run --flake-registry "$PWD/flake-registry.json" nixpkgs#hello
|