Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 15s
Check Nix flake / Build nix outputs (ubuntu-latest) (pull_request) Failing after 2m42s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m51s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 3m56s
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
14 lines
286 B
Bash
Executable File
14 lines
286 B
Bash
Executable File
#!/usr/bin/env nix
|
|
#! nix shell nixpkgs#bash nixpkgs#gnugrep nixpkgs#nvd --command bash
|
|
|
|
# diffs each derivation
|
|
|
|
set -x
|
|
set -v
|
|
set -e
|
|
|
|
script_path=$(dirname "$(readlink -f $0)")
|
|
parent_path=$(dirname "$script_path")
|
|
|
|
nix run . -- --compare-drvs --compare-output-to-file "$parent_path"
|