Skip to content

Commit

Permalink
Update Nix shell to use today's latest 23.05 + updated compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
lloeki committed Oct 27, 2023
1 parent 204d507 commit 231a73b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
pkgs ? import <nixpkgs> {},

# use a pinned package state
pinned ? import(fetchTarball("https://github.com/NixOS/nixpkgs/archive/14d9b465c71.tar.gz")) {},
pinned ? import(fetchTarball("https://github.com/NixOS/nixpkgs/archive/31b322916ae1.tar.gz")) {},
}:
let
# specify ruby version to use
ruby = pinned.ruby_3_1;
ruby = pinned.ruby_3_2;

# control llvm/clang version (e.g for packages built from source)
llvm = pinned.llvmPackages_12;
llvm = pinned.llvmPackages_16;

# control gcc version (e.g for packages built from source)
gcc = pinned.gcc12;
gcc = pinned.gcc13;
in llvm.stdenv.mkDerivation {
# unique project name for this environment derivation
name = "dd-trace-rb.devshell";
Expand Down

0 comments on commit 231a73b

Please sign in to comment.