svn path=/nixpkgs/trunk/; revision=13280

This commit is contained in:
Eelco Dolstra 2008-11-13 12:45:08 +00:00
parent d22734c3e7
commit 957a8b876a

View File

@ -458,6 +458,8 @@ rec {
''; '';
installPhase = '' installPhase = ''
eval "$preInstall"
ensureDir $out/$outDir ensureDir $out/$outDir
find /usr/src -name "*.rpm" -exec cp {} $out/$outDir \; find /usr/src -name "*.rpm" -exec cp {} $out/$outDir \;
@ -466,6 +468,8 @@ rec {
rpm -qip $i rpm -qip $i
stopNest stopNest
done done
eval "$postInstall"
''; # */ ''; # */
} // attrs)); } // attrs));