mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 22:54:17 +00:00
![Silvan Mosberger](/assets/img/avatar_default.png)
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
80 lines
1.7 KiB
Nix
80 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
llvmPackages,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cmake,
|
|
llvm_12,
|
|
ncurses,
|
|
readline,
|
|
zlib,
|
|
libxml2,
|
|
python3,
|
|
}:
|
|
llvmPackages.stdenv.mkDerivation {
|
|
pname = "hobbes";
|
|
version = "0-unstable-2023-06-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "morganstanley";
|
|
repo = "hobbes";
|
|
rev = "88a712b85bc896a4c87e60c12321445f1cdcfd00";
|
|
hash = "sha256-2v0yk35/cLKTjX0Qbc8cjc7Y6bamRSa9GpPvGoxL2Cw=";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
llvm_12
|
|
ncurses
|
|
readline
|
|
zlib
|
|
libxml2
|
|
python3
|
|
];
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "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";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
kthielen
|
|
thmzlt
|
|
];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
];
|
|
};
|
|
}
|