forked from lix-project/lix
93aefd9fc0
get the basename of the channel URL (e.g., nixpkgs-unstable). The top-level Nix expression of the channel is now an attribute set, the attributes of which are the individual channels (e.g., {nixpkgs_unstable = ...; strategoxt_unstable = ...}). This makes attribute paths ("nix-env -qaA" and "nix-env -iA") more sensible, e.g., "nix-env -iA nixpkgs_unstable.subversion".
34 lines
700 B
Bash
34 lines
700 B
Bash
#! @shell@ -e
|
|
|
|
@coreutils@/mkdir $out
|
|
@coreutils@/mkdir $out/tmp
|
|
cd $out/tmp
|
|
|
|
expr=$out/default.nix
|
|
echo '{' > $expr
|
|
|
|
inputs=($inputs)
|
|
for ((n = 0; n < ${#inputs[*]}; n += 2)); do
|
|
channelName=${inputs[n]}
|
|
channelTarball=${inputs[n+1]}
|
|
echo "unpacking channel $channelName"
|
|
@bunzip2@ < $channelTarball | @tar@ xf -
|
|
|
|
nr=1
|
|
dirName=$channelName
|
|
while test -e ../$dirName; do
|
|
nr=$((nr+1))
|
|
dirName=$channelName-$nr
|
|
done
|
|
|
|
@coreutils@/mv * ../$dirName # !!! hacky
|
|
|
|
attrName=$(echo $dirName | @tr@ -- '- ' '__')
|
|
echo "$attrName = import ./$dirName {};" >> $expr
|
|
done
|
|
|
|
echo '} // {_combineChannels = true;}' >> $expr
|
|
|
|
cd ..
|
|
@coreutils@/rmdir tmp
|