aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/unicorn-emu/default.nix
blob: 3e10f492eb98ea6f055f5656c43d03f535a36912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchurl, pkgconfig, python, cmocka, hexdump, writeScriptBin, binutils-unwrapped }:

stdenv.mkDerivation rec {
  pname = "unicorn-emulator";
  version = "1.0.2-rc4";

  src = fetchurl {
    url    = "https://github.com/unicorn-engine/unicorn/archive/${version}.tar.gz";
    sha256 = "05w43jq3r97l3c8ggc745ai8m5l93p1b6q6cfp1zwzz6hl5kifiv";
  };

  PREFIX = placeholder "out";
  MACOS_UNIVERSAL = stdenv.lib.optionalString stdenv.isDarwin "no";
  NIX_CFLAGS_COMPILE = "-Wno-error";

  doCheck = !stdenv.isDarwin;

  checkInputs = [
    cmocka
    hexdump
    python.pkgs.setuptools
  ];

  nativeBuildInputs = [ pkgconfig python ];
  enableParallelBuilding = true;

  meta = {
    description = "Lightweight multi-platform CPU emulator library";
    homepage    = "http://www.unicorn-engine.org";
    license     = stdenv.lib.licenses.bsd3;
    platforms   = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
  };
}