keystone: init at 0.9.2
This commit is contained in:
parent
aee8263788
commit
1e9d2d2f12
2 changed files with 34 additions and 0 deletions
32
pkgs/development/libraries/keystone/default.nix
Normal file
32
pkgs/development/libraries/keystone/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, cmake
|
||||||
|
, python3
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "keystone";
|
||||||
|
version = "0.9.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "keystone-engine";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "020d1l1aqb82g36l8lyfn2j8c660mm6sh1nl4haiykwgdl9xnxfa";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
cmake
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Lightweight multi-platform, multi-architecture assembler framework";
|
||||||
|
homepage = "https://www.keystone-engine.org";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
maintainers = with maintainers; [ luc65r ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1651,6 +1651,8 @@ in
|
||||||
capstone = callPackage ../development/libraries/capstone { };
|
capstone = callPackage ../development/libraries/capstone { };
|
||||||
unicorn-emu = callPackage ../development/libraries/unicorn-emu { };
|
unicorn-emu = callPackage ../development/libraries/unicorn-emu { };
|
||||||
|
|
||||||
|
keystone = callPackage ../development/libraries/keystone { };
|
||||||
|
|
||||||
casync = callPackage ../applications/networking/sync/casync {
|
casync = callPackage ../applications/networking/sync/casync {
|
||||||
sphinx = python3Packages.sphinx;
|
sphinx = python3Packages.sphinx;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue