2008-03-17 18:08:40 +01:00
|
|
|
with import ../../.. {};
|
2008-03-17 18:29:07 +01:00
|
|
|
with vmTools;
|
2008-03-17 18:08:40 +01:00
|
|
|
|
|
|
|
rec {
|
|
|
|
|
|
|
|
|
|
|
|
# Run the PatchELF derivation in a VM.
|
|
|
|
buildPatchelfInVM = runInLinuxVM patchelf;
|
|
|
|
|
2013-07-05 00:06:08 +02:00
|
|
|
buildHelloInVM = runInLinuxVM hello;
|
|
|
|
|
|
|
|
buildPanInVM = runInLinuxVM pan;
|
|
|
|
|
2008-03-17 18:08:40 +01:00
|
|
|
|
2013-07-04 18:23:25 +02:00
|
|
|
testRPMImage = makeImageTestScript diskImages.fedora16x86_64;
|
2008-03-17 18:08:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
buildPatchelfRPM = buildRPM {
|
|
|
|
name = "patchelf-rpm";
|
|
|
|
src = patchelf.src;
|
2012-03-07 10:47:22 +01:00
|
|
|
diskImage = diskImages.fedora16x86_64;
|
2008-03-17 18:08:40 +01:00
|
|
|
};
|
|
|
|
|
2013-07-05 00:06:08 +02:00
|
|
|
|
2008-11-12 18:15:09 +01:00
|
|
|
testUbuntuImage = makeImageTestScript diskImages.ubuntu810i386;
|
2008-03-17 18:08:40 +01:00
|
|
|
|
2013-07-05 00:06:08 +02:00
|
|
|
|
2008-03-17 18:08:40 +01:00
|
|
|
buildInDebian = runInLinuxImage (stdenv.mkDerivation {
|
|
|
|
name = "deb-compile";
|
2009-02-24 11:56:42 +01:00
|
|
|
src = patchelf.src;
|
2012-05-11 04:04:14 +02:00
|
|
|
diskImage = diskImages.ubuntu1204i386;
|
2008-03-17 18:08:40 +01:00
|
|
|
memSize = 512;
|
2008-03-17 18:29:07 +01:00
|
|
|
phases = "sysInfoPhase unpackPhase patchPhase configurePhase buildPhase checkPhase installPhase fixupPhase distPhase";
|
|
|
|
sysInfoPhase = ''
|
|
|
|
dpkg-query --list
|
|
|
|
'';
|
2008-03-17 18:08:40 +01:00
|
|
|
});
|
|
|
|
|
2011-01-05 10:42:56 +01:00
|
|
|
}
|