summary refs log tree commit diff
path: root/pkgs/development/libraries/unicorn-emu
diff options
context:
space:
mode:
authorluc65r <lucas@ransan.tk>2020-10-29 19:22:04 +0100
committerluc65r <lucas@ransan.tk>2020-10-29 21:15:42 +0100
commit345f1d11d3f8d65d8ee7a84993a64c22b7dd804c (patch)
tree3ae1f2d88e08fa5d0cb843c8841cafcb2714a375 /pkgs/development/libraries/unicorn-emu
parentaee8263788c97572b85932b801bb0c9530c6ddf8 (diff)
downloadnixpkgs-345f1d11d3f8d65d8ee7a84993a64c22b7dd804c.tar
nixpkgs-345f1d11d3f8d65d8ee7a84993a64c22b7dd804c.tar.gz
nixpkgs-345f1d11d3f8d65d8ee7a84993a64c22b7dd804c.tar.bz2
nixpkgs-345f1d11d3f8d65d8ee7a84993a64c22b7dd804c.tar.lz
nixpkgs-345f1d11d3f8d65d8ee7a84993a64c22b7dd804c.tar.xz
nixpkgs-345f1d11d3f8d65d8ee7a84993a64c22b7dd804c.tar.zst
nixpkgs-345f1d11d3f8d65d8ee7a84993a64c22b7dd804c.zip
unicorn(-emu): 1.0.2-rc4 -> 1.0.2
Diffstat (limited to 'pkgs/development/libraries/unicorn-emu')
-rw-r--r--pkgs/development/libraries/unicorn-emu/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/development/libraries/unicorn-emu/default.nix b/pkgs/development/libraries/unicorn-emu/default.nix
deleted file mode 100644
index 3e10f492eb9..00000000000
--- a/pkgs/development/libraries/unicorn-emu/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ 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 ];
-  };
-}