nixpkgs/pkgs/development/libraries/keystone/default.nix

38 lines
737 B
Nix
Raw Normal View History

{ lib, stdenv
2020-10-29 18:58:28 +00:00
, 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";
};
2020-12-09 18:26:33 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DCMAKE_INSTALL_LIBDIR=lib"
];
2020-10-29 18:58:28 +00:00
nativeBuildInputs = [
pkg-config
cmake
python3
];
meta = with lib; {
2020-10-29 18:58:28 +00:00
description = "Lightweight multi-platform, multi-architecture assembler framework";
homepage = "https://www.keystone-engine.org";
license = licenses.gpl2Only;
maintainers = with maintainers; [ luc65r ];
platforms = platforms.unix;
};
}