2021-08-20 23:31:26 +02:00
|
|
|
with import ../../.. { };
|
2008-03-17 18:29:07 +01:00
|
|
|
with vmTools;
|
2008-03-17 18:08:40 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
{
|
2008-03-17 18:08:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Run the PatchELF derivation in a VM.
|
|
|
|
buildPatchelfInVM = runInLinuxVM patchelf;
|
|
|
|
|
2013-07-05 00:06:08 +02:00
|
|
|
buildHelloInVM = runInLinuxVM hello;
|
|
|
|
|
2021-12-18 14:51:25 +01:00
|
|
|
buildPanInVM = runInLinuxVM (pan // { memSize = 2048; });
|
2013-07-05 00:06:08 +02:00
|
|
|
|
2008-03-17 18:08:40 +01:00
|
|
|
|
2021-12-17 15:46:17 +01:00
|
|
|
testRPMImage = makeImageTestScript diskImages.fedora27x86_64;
|
2008-03-17 18:08:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
buildPatchelfRPM = buildRPM {
|
|
|
|
name = "patchelf-rpm";
|
|
|
|
src = patchelf.src;
|
2021-12-17 15:46:17 +01:00
|
|
|
diskImage = diskImages.fedora27x86_64;
|
2021-12-28 14:09:35 +01:00
|
|
|
diskImageFormat = "qcow2";
|
2008-03-17 18:08:40 +01:00
|
|
|
};
|
|
|
|
|
2013-07-05 00:06:08 +02:00
|
|
|
|
2021-12-17 15:46:17 +01:00
|
|
|
testUbuntuImage = makeImageTestScript diskImages.ubuntu1804i386;
|
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;
|
2021-10-28 00:02:44 +02:00
|
|
|
diskImage = diskImages.ubuntu1804i386;
|
2021-10-28 00:05:27 +02:00
|
|
|
diskImageFormat = "qcow2";
|
2008-03-17 18:08:40 +01:00
|
|
|
memSize = 512;
|
2021-10-28 00:02:44 +02:00
|
|
|
postHook = ''
|
2008-03-17 18:29:07 +01:00
|
|
|
dpkg-query --list
|
|
|
|
'';
|
2008-03-17 18:08:40 +01:00
|
|
|
});
|
|
|
|
|
2011-01-05 10:42:56 +01:00
|
|
|
}
|