9c8f2009f8
svn path=/nixpkgs/trunk/; revision=11514
37 lines
764 B
Nix
37 lines
764 B
Nix
with import ../../.. {};
|
|
with vmTools;
|
|
|
|
rec {
|
|
|
|
|
|
# Run the PatchELF derivation in a VM.
|
|
buildPatchelfInVM = runInLinuxVM patchelf;
|
|
|
|
|
|
testRPMImage = makeImageTestScript diskImages.fedora8i386;
|
|
|
|
|
|
buildPatchelfRPM = buildRPM {
|
|
name = "patchelf-rpm";
|
|
src = patchelf.src;
|
|
diskImage = diskImages.fedora5i386;
|
|
};
|
|
|
|
|
|
testUbuntuImage = makeImageTestScript diskImages.ubuntu710i386;
|
|
|
|
|
|
buildInDebian = runInLinuxImage (stdenv.mkDerivation {
|
|
name = "deb-compile";
|
|
src = nixUnstable.src;
|
|
diskImage = diskImages.debian40r3i386;
|
|
memSize = 512;
|
|
phases = "sysInfoPhase unpackPhase patchPhase configurePhase buildPhase checkPhase installPhase fixupPhase distPhase";
|
|
sysInfoPhase = ''
|
|
dpkg-query --list
|
|
'';
|
|
});
|
|
|
|
|
|
|
|
} |