Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

hobbes: 0-unstable-2023-06-03 -> 0-unstable-2025-04-23 (#406803)

authored by

Robert Scott and committed by
GitHub
12b8f084 cc33da8f

+6 -21
+6 -21
pkgs/by-name/ho/hobbes/package.nix
··· 3 stdenv, 4 llvmPackages, 5 fetchFromGitHub, 6 - fetchpatch, 7 cmake, 8 llvm_12, 9 ncurses, ··· 14 }: 15 llvmPackages.stdenv.mkDerivation { 16 pname = "hobbes"; 17 - version = "0-unstable-2023-06-03"; 18 19 src = fetchFromGitHub { 20 owner = "morganstanley"; 21 repo = "hobbes"; 22 - rev = "88a712b85bc896a4c87e60c12321445f1cdcfd00"; 23 - hash = "sha256-2v0yk35/cLKTjX0Qbc8cjc7Y6bamRSa9GpPvGoxL2Cw="; 24 }; 25 26 - patches = [ 27 - # fix build for LLVM-12+ 28 - # https://github.com/morganstanley/hobbes/pull/452 29 - (fetchpatch { 30 - name = "include-cstdint.patch"; 31 - url = "https://github.com/morganstanley/hobbes/commit/924b71fca06c61e606792cc8db8521fb499d4237.patch"; 32 - hash = "sha256-/VsWtTYc3LBOnm4Obgx/MOqaaWZhUc8yzmkygtNz+mY="; 33 - }) 34 ]; 35 - 36 - # only one warning generated. try to remove on next update 37 - env.CXXFLAGS = "-Wno-error=deprecated-copy"; 38 - 39 - # TODO: re-enable Python tests once they work on Python 3 40 - # currently failing with "I don't know how to decode the primitive type: b'bool'" 41 - postPatch = '' 42 - rm test/Python.C 43 - ''; 44 45 nativeBuildInputs = [ 46 cmake
··· 3 stdenv, 4 llvmPackages, 5 fetchFromGitHub, 6 cmake, 7 llvm_12, 8 ncurses, ··· 13 }: 14 llvmPackages.stdenv.mkDerivation { 15 pname = "hobbes"; 16 + version = "0-unstable-2025-04-23"; 17 18 src = fetchFromGitHub { 19 owner = "morganstanley"; 20 repo = "hobbes"; 21 + rev = "0829030be03d47f91075cbebd0c9565f44bf9911"; 22 + hash = "sha256-GZ26XL4++2MWQED2tVWeJ8HFcFQUXnXZ3+JCgdlAXNo="; 23 }; 24 25 + CXXFLAGS = [ 26 + "-Wno-error=missing-template-arg-list-after-template-kw" 27 + "-Wno-error=deprecated-copy" 28 ]; 29 30 nativeBuildInputs = [ 31 cmake