mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
8b3e1e72a7
this allows us to easily keep the two in sync and gives a more flexible result, also add self as co-maintainer.
24 lines
687 B
Nix
24 lines
687 B
Nix
{ stdenv, buildPythonPackage, setuptools, unicorn-emu }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "unicorn";
|
|
version = stdenv.lib.getVersion unicorn-emu;
|
|
|
|
src = unicorn-emu.src;
|
|
sourceRoot = "unicorn-${version}/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 stdenv.lib; {
|
|
description = "Python bindings for Unicorn CPU emulator engine";
|
|
homepage = "http://www.unicorn-engine.org/";
|
|
license = [ licenses.gpl2 ];
|
|
maintainers = with maintainers; [ bennofs ris ];
|
|
};
|
|
}
|