1 with import ../../.. { };
7 # Run the PatchELF derivation in a VM.
8 buildPatchelfInVM = runInLinuxVM patchelf;
10 buildHelloInVM = runInLinuxVM hello;
12 buildPcmanrmInVM = runInLinuxVM (pcmanfm.overrideAttrs (old: {
13 # goes out-of-memory with many cores
14 enableParallelBuilding = false;
17 testRPMImage = makeImageTestScript diskImages.fedora27x86_64;
20 buildPatchelfRPM = buildRPM {
21 name = "patchelf-rpm";
23 diskImage = diskImages.fedora27x86_64;
24 diskImageFormat = "qcow2";
28 testUbuntuImage = makeImageTestScript diskImages.ubuntu1804i386;
31 buildInDebian = runInLinuxImage (stdenv.mkDerivation {
34 diskImage = diskImages.ubuntu1804i386;
35 diskImageFormat = "qcow2";