mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
unicorn-emu: enable for darwin/unix
This commit is contained in:
parent
48f461d8c3
commit
7766de0a53
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
configurePhase = '' patchShebangs make.sh '';
|
configurePhase = '' patchShebangs make.sh '';
|
||||||
buildPhase = '' ./make.sh '';
|
buildPhase = '' ./make.sh '' + stdenv.lib.optionalString stdenv.isDarwin "macos-universal-no";
|
||||||
installPhase = '' env PREFIX=$out ./make.sh install '';
|
installPhase = '' env PREFIX=$out ./make.sh install '';
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig python ];
|
nativeBuildInputs = [ pkgconfig python ];
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Lightweight multi-platform CPU emulator library";
|
description = "Lightweight multi-platform CPU emulator library";
|
||||||
homepage = "http://www.unicorn-engine.org";
|
homepage = "http://www.unicorn-engine.org";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user