warbo-utilities: 43e3e748d188d0c690f2a2786bd4201585427981

     1: #!/usr/bin/env bash
     2: 
     3: # 'in_nix_shell "foo bar" baz quux'
     4: # becomes
     5: # 'nix-shell -p foo -p bar --run "baz quux"'
     6: 
     7: PKGS="$1"
     8: shift
     9: 
    10: nix-shell -p "$PKGS" --run "$*"

Generated by git2html.