7 stdenv.mkDerivation (finalAttrs: {
11 src = fetchFromGitHub {
14 rev = finalAttrs.version;
15 hash = "sha256-4wgDftXOYm2fMP+/aTRljDi38EzbbwAJlQkuxjAMl3I=";
18 # Do not include --enable-static and --disable-shared flags during static compilation
19 dontAddStaticConfigureFlags = true;
21 # Don't add --build and --host flags as they are not supported
22 configurePlatforms = lib.optionals stdenv.hostPlatform.isStatic [ ];
24 # ./configure script expects --static not standard --enable-static
25 configureFlags = lib.optional stdenv.hostPlatform.isStatic "--static";
27 # 'make check' requires internet connection
32 description = "Tiniest x86-64-linux emulator";
34 blink is a virtual machine that runs x86-64-linux programs on different operating systems and hardware architectures. It's designed to do the same thing as the qemu-x86_64 command, except that
35 - blink is much smaller in size than qemu-x86_64
36 - blink will run your Linux binaries on any POSIX platform, whereas qemu-x86_64 only supports Linux
37 - blink goes 2x faster than qemu-x86_64 on some benchmarks, such as SSE integer / floating point math. Blink is also faster at running ephemeral programs such as compilers
40 homepage = "https://github.com/jart/blink";
41 license = lib.licenses.isc;
42 maintainers = with lib.maintainers; [ t4ccer ];
43 platforms = lib.platforms.all;