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

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

48 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, llvm_12, ncurses, readline, zlib, libxml2 }:
2020-03-11 12:03:55 +00:00
stdenv.mkDerivation {
pname = "hobbes";
version = "unstable-2021-04-28";
2020-03-11 12:03:55 +00:00
src = fetchFromGitHub {
owner = "morgan-stanley";
repo = "hobbes";
rev = "737c7ca63516f6b3dca0e659c3de75d4325472d6";
sha256 = "0fjsmz1sbrp6464mrb9ha7p615w2l2pdldsc2ayvcrvxfyi1r4gj";
2020-03-11 12:03:55 +00:00
};
# 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
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" ];
};
}