nixpkgs/pkgs/development/tools/hobbes/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2024-01-25 06:04:26 +00:00
, llvmPackages
, fetchFromGitHub
2024-01-25 06:04:26 +00:00
, fetchpatch
, cmake
, llvm_12
, ncurses
, readline
, zlib
, libxml2
, python3
}:
2024-01-25 06:04:26 +00:00
llvmPackages.stdenv.mkDerivation {
pname = "hobbes";
2024-01-25 06:04:26 +00:00
version = "0-unstable-2023-06-03";
2020-03-11 12:03:55 +00:00
src = fetchFromGitHub {
owner = "morganstanley";
2020-03-11 12:03:55 +00:00
repo = "hobbes";
rev = "88a712b85bc896a4c87e60c12321445f1cdcfd00";
hash = "sha256-2v0yk35/cLKTjX0Qbc8cjc7Y6bamRSa9GpPvGoxL2Cw=";
2020-03-11 12:03:55 +00:00
};
2024-01-25 06:04:26 +00:00
patches = [
# fix build for LLVM-12+
# https://github.com/morganstanley/hobbes/pull/452
(fetchpatch {
name = "include-cstdint.patch";
url = "https://github.com/morganstanley/hobbes/commit/924b71fca06c61e606792cc8db8521fb499d4237.patch";
hash = "sha256-/VsWtTYc3LBOnm4Obgx/MOqaaWZhUc8yzmkygtNz+mY=";
})
];
# only one warning generated. try to remove on next update
env.CXXFLAGS = "-Wno-error=deprecated-copy";
# TODO: re-enable Python tests once they work on Python 3
# currently failing with "I don't know how to decode the primitive type: b'bool'"
postPatch = ''
rm test/Python.C
'';
2020-03-11 12:03:55 +00:00
nativeBuildInputs = [
cmake
];
buildInputs = [
llvm_12
2020-03-11 12:03:55 +00:00
ncurses
readline
zlib
2021-05-21 23:13:30 +00:00
libxml2
python3
2020-03-11 12:03:55 +00:00
];
doCheck = true;
2020-03-11 12:03:55 +00:00
checkTarget = "test";
meta = with lib; {
broken = stdenv.isDarwin;
2020-03-11 12:03:55 +00:00
description = "A language and an embedded JIT compiler";
longDescription = ''
Hobbes is a a language, embedded compiler, and runtime for efficient
dynamic expression evaluation, data storage and analysis.
'';
homepage = "https://github.com/morganstanley/hobbes";
2020-03-11 12:03:55 +00:00
license = licenses.asl20;
2020-05-17 03:54:52 +00:00
maintainers = with maintainers; [ kthielen thmzlt ];
2020-03-11 12:03:55 +00:00
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}