mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
fe1c7a1945
they're obsolete
10 lines
266 B
Bash
10 lines
266 B
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
source $stdenv/setup
|
|
|
|
echo "exporting egg ${eggName} (version $version) into $out"
|
|
|
|
mkdir -p $out
|
|
CHICKEN_EGG_CACHE=. chicken-install -r "${eggName}:${version}"
|
|
rm ${eggName}/{STATUS,TIMESTAMP}
|
|
cp -r ${eggName}/* $out/
|