mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
pythonPackages.unicorn: redesign to become a wrapper package around unicorn-emu
this allows us to easily keep the two in sync and gives a more flexible result, also add self as co-maintainer.
This commit is contained in:
parent
7766de0a53
commit
8b3e1e72a7
@ -1,23 +1,23 @@
|
||||
{ stdenv, buildPackages, buildPythonPackage, fetchPypi }:
|
||||
{ stdenv, buildPythonPackage, setuptools, unicorn-emu }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "unicorn";
|
||||
version = "1.0.1";
|
||||
version = stdenv.lib.getVersion unicorn-emu;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0a5b4vh734b3wfkgapzzf8x18rimpmzvwwkly56da84n27wfw9bg";
|
||||
};
|
||||
src = unicorn-emu.src;
|
||||
sourceRoot = "unicorn-${version}/bindings/python";
|
||||
|
||||
# needs python2 at build time
|
||||
PYTHON=buildPackages.python2.interpreter;
|
||||
prePatch = ''
|
||||
ln -s ${unicorn-emu}/lib/libunicorn${stdenv.targetPlatform.extensions.sharedLibrary} prebuilt/
|
||||
ln -s ${unicorn-emu}/lib/libunicorn.a prebuilt/
|
||||
'';
|
||||
|
||||
setupPyBuildFlags = [ "--plat-name" "linux" ];
|
||||
propagatedBuildInputs = [ setuptools ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Unicorn CPU emulator engine";
|
||||
description = "Python bindings for Unicorn CPU emulator engine";
|
||||
homepage = "http://www.unicorn-engine.org/";
|
||||
license = [ licenses.gpl2 ];
|
||||
maintainers = [ maintainers.bennofs ];
|
||||
maintainers = with maintainers; [ bennofs ris ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user