about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-25 06:04:26 +0000
committerannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-25 09:26:42 +0000
commita082c256ae3b8e2c1ecc5832f5f1224ffc2d6340 (patch)
treeac39b4d613ba06cc558dd63e69918601d13d1d55 /pkgs
parenta89664f224e14ca95386443e8928257b7608d1dc (diff)
downloadnixlib-a082c256ae3b8e2c1ecc5832f5f1224ffc2d6340.tar
nixlib-a082c256ae3b8e2c1ecc5832f5f1224ffc2d6340.tar.gz
nixlib-a082c256ae3b8e2c1ecc5832f5f1224ffc2d6340.tar.bz2
nixlib-a082c256ae3b8e2c1ecc5832f5f1224ffc2d6340.tar.lz
nixlib-a082c256ae3b8e2c1ecc5832f5f1224ffc2d6340.tar.xz
nixlib-a082c256ae3b8e2c1ecc5832f5f1224ffc2d6340.tar.zst
nixlib-a082c256ae3b8e2c1ecc5832f5f1224ffc2d6340.zip
hobbes: unpin stdenv llvm
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/hobbes/default.nix20
1 files changed, 17 insertions, 3 deletions
diff --git a/pkgs/development/tools/hobbes/default.nix b/pkgs/development/tools/hobbes/default.nix
index 5c3eb84b2d5a..851d64545d8f 100644
--- a/pkgs/development/tools/hobbes/default.nix
+++ b/pkgs/development/tools/hobbes/default.nix
@@ -1,7 +1,8 @@
 { lib
 , stdenv
-, llvmPackages_10
+, llvmPackages
 , fetchFromGitHub
+, fetchpatch
 , cmake
 , llvm_12
 , ncurses
@@ -10,9 +11,9 @@
 , libxml2
 , python3
 }:
-llvmPackages_10.stdenv.mkDerivation {
+llvmPackages.stdenv.mkDerivation {
   pname = "hobbes";
-  version = "unstable-2023-06-03";
+  version = "0-unstable-2023-06-03";
 
   src = fetchFromGitHub {
     owner = "morganstanley";
@@ -21,6 +22,19 @@ llvmPackages_10.stdenv.mkDerivation {
     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 = ''