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

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

59 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, llvmPackages_10
, fetchFromGitHub
, cmake
, llvm_12
, ncurses
, readline
, zlib
, libxml2
, python3
}:
llvmPackages_10.stdenv.mkDerivation {
pname = "hobbes";
version = "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
};
# 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" ];
};
}