Skip to content

Commit

Permalink
unicorn-emulator: 1.0.1 -> 1.0.2-rc4
Browse files Browse the repository at this point in the history
Also adds tests
  • Loading branch information
kristoff3r committed Jul 28, 2020
1 parent 5717d9d commit 8b633d8
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions pkgs/development/libraries/unicorn-emu/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
{ stdenv, fetchurl, pkgconfig, python }:
{ stdenv, fetchurl, pkgconfig, python, cmocka, hexdump, writeScriptBin, binutils-unwrapped }:

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

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

configurePhase = '' patchShebangs make.sh '';
buildPhase = '' ./make.sh '' + stdenv.lib.optionalString stdenv.isDarwin "macos-universal-no";
installPhase = '' env PREFIX=$out ./make.sh install '';
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;
Expand Down

0 comments on commit 8b633d8

Please sign in to comment.