14 lines
		
	
	
		
			368 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			368 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 git+https://nayeonie.com/ahuston-0/flake-update-diff -- --compare-drvs --allow-import-from-derivation --compare-output-to-file "$parent_path"
 |