1 { stdenv, fetchFromGitHub, lib }:
3 stdenv.mkDerivation (finalAttrs: {
7 src = fetchFromGitHub {
10 rev = finalAttrs.version;
11 hash = "sha256-4wgDftXOYm2fMP+/aTRljDi38EzbbwAJlQkuxjAMl3I=";
14 # Do not include --enable-static and --disable-shared flags during static compilation
15 dontAddStaticConfigureFlags = true;
17 # Don't add --build and --host flags as they are not supported
18 configurePlatforms = lib.optionals stdenv.hostPlatform.isStatic [ ];
20 # ./configure script expects --static not standard --enable-static
21 configureFlags = lib.optional stdenv.hostPlatform.isStatic "--static";
23 # 'make check' requires internet connection
28 description = "Tiniest x86-64-linux emulator";
30 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
31 - blink is much smaller in size than qemu-x86_64
32 - blink will run your Linux binaries on any POSIX platform, whereas qemu-x86_64 only supports Linux
33 - 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
36 homepage = "https://github.com/jart/blink";
37 license = lib.licenses.isc;
38 maintainers = with lib.maintainers; [ t4ccer ];
39 platforms = lib.platforms.all;