nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 16 lines 335 B view raw
1CONFIG_DIR=$YS/config 2if [ ! -d $CONFIG_DIR ]; then 3 mkdir -p $CONFIG_DIR 4fi 5 6REGISTRY=$CONFIG_DIR/registry8.xml 7if [ ! -e $REGISTRY ]; then 8 cat >$REGISTRY <<EOF 9<?xml version="1.0" encoding="UTF-8" standalone="no"?> 10<registry8> 11 <desktop-file.created> 12 <boolean value="true"/> 13 </desktop-file.created> 14</registry8> 15EOF 16fi