about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/unicorn/default.nix
blob: 484f422adf3e4688964c8f0d157e705e9c3f87f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, buildPythonPackage, setuptools, unicorn-emu }:

buildPythonPackage rec {
  pname = "unicorn";
  version = lib.getVersion unicorn-emu;

  src = unicorn-emu.src;
  sourceRoot = "source/bindings/python";

  prePatch = ''
    ln -s ${unicorn-emu}/lib/libunicorn${stdenv.targetPlatform.extensions.sharedLibrary} prebuilt/
    ln -s ${unicorn-emu}/lib/libunicorn.a prebuilt/
  '';

  propagatedBuildInputs = [ setuptools ];

  meta = with lib; {
    description = "Python bindings for Unicorn CPU emulator engine";
    homepage = "https://www.unicorn-engine.org/";
    license = [ licenses.gpl2 ];
    maintainers = with maintainers; [ bennofs ris ];
  };
}