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

Merge pull request #308512 from sequencer/circt174

circt: 1.73 -> 1.74

authored by Nick Cao and committed by GitHub beb40906 998105a6

+5 -4
+1 -1
pkgs/development/compilers/circt/circt-llvm.nix
··· 23 23 "-DLLVM_BUILD_EXAMPLES=OFF" 24 24 "-DLLVM_OPTIMIZED_TABLEGEN=ON" 25 25 "-DLLVM_ENABLE_PROJECTS=mlir" 26 - "-DLLVM_TARGETS_TO_BUILD=" 26 + "-DLLVM_TARGETS_TO_BUILD=Native" 27 27 28 28 # This option is needed to install llvm-config 29 29 "-DLLVM_INSTALL_UTILS=ON"
+4 -3
pkgs/development/compilers/circt/default.nix
··· 7 7 , fetchFromGitHub 8 8 , ninja 9 9 , lit 10 + , z3 10 11 , gitUpdater 11 12 , callPackage 12 13 }: ··· 17 18 in 18 19 stdenv.mkDerivation rec { 19 20 pname = "circt"; 20 - version = "1.73.0"; 21 + version = "1.74.0"; 21 22 src = fetchFromGitHub { 22 23 owner = "llvm"; 23 24 repo = "circt"; 24 25 rev = "firtool-${version}"; 25 - hash = "sha256-C50PiToXrKf94Vg1yv++3xVhIuCW/KVPs0yLv5Fg0dY="; 26 + hash = "sha256-RFvWUd98OiL2I3aFrP61LQRZr4FSKrrZ5YOblBKRCA4="; 26 27 fetchSubmodules = true; 27 28 }; 28 29 29 30 requiredSystemFeatures = [ "big-parallel" ]; 30 31 31 - nativeBuildInputs = [ cmake ninja git pythonEnv ]; 32 + nativeBuildInputs = [ cmake ninja git pythonEnv z3 ]; 32 33 buildInputs = [ circt-llvm ]; 33 34 34 35 cmakeFlags = [