* Remove sed hackery that is no longer needed. (The firmware files in
the Debian SVN tree had a version number attached that had to be stripped out.) svn path=/nixpkgs/trunk/; revision=30035
This commit is contained in:
parent
eeb4d231b3
commit
7c953e8bf5
@ -22,9 +22,8 @@ stdenv.mkDerivation {
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/brcm
|
||||
for i in ${src1} ${src2}; do
|
||||
cp -v $i $out/brcm/$(echo $i | sed -r -e 's|.*/[a-z0-9]+-||')
|
||||
done
|
||||
cp ${src1} $out/brcm/${src1.name}
|
||||
cp ${src2} $out/brcm/${src2.name}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
Loading…
Reference in New Issue
Block a user