nix-helpers: eddb61d5da5a15450c21a7f8d15e9d3b58c67179

     1: #!/usr/bin/env bash
     2: set -e
     3: 
     4: # Simple, quick sanity check. Useful as a git pre-commit hook.
     5: 
     6: find . -name "*.nix" | while read -r F
     7: do
     8:     echo "Checking syntax of '$F'" 1>&2
     9:     nix-instantiate --parse "$F" > /dev/null
    10: done

Generated by git2html.