biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / emulators / blink / default.nix
blob129bde2792c3c2adb34ac086a14b4b8166178893
1 { stdenv, fetchFromGitHub, lib }:
3 stdenv.mkDerivation (finalAttrs: {
4   pname = "blink";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "jart";
9     repo = "blink";
10     rev = finalAttrs.version;
11     hash = "sha256-4wgDftXOYm2fMP+/aTRljDi38EzbbwAJlQkuxjAMl3I=";
12   };
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
24   doCheck = true;
25   checkTarget = "test";
27   meta = {
28     description = "Tiniest x86-64-linux emulator";
29     longDescription = ''
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
34     '';
36     homepage = "https://github.com/jart/blink";
37     license = lib.licenses.isc;
38     maintainers = with lib.maintainers; [ t4ccer ];
39     platforms = lib.platforms.all;
40   };