dream2nix/scripts/update-examples.sh
DavHau 5914156eb7 examples: add flake.nix to each example
This makes hte examples more standalone and suitable for copy & paste
2023-10-31 11:36:21 +00:00

11 lines
310 B
Bash
Executable File

#!/usr/bin/env bash
# find script directory
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# find examples directory
packagesDir="$DIR/../examples/packages"
# iterate over all double nested package directories and copy the flake file there
echo "$packagesDir"/*/*/ | xargs -n 1 cp "$DIR"/flake.nix