mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 22:48:02 +03:00
11 lines
310 B
Bash
11 lines
310 B
Bash
|
#!/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
|