From 54f29d2934ec432b8476367cfad5ae6102441012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Fri, 10 May 2024 21:54:19 +0200 Subject: [PATCH] nixpkgs-unstable --- shell.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/shell.nix b/shell.nix index 1d839dcf318f..3224504f571e 100644 --- a/shell.nix +++ b/shell.nix @@ -19,16 +19,13 @@ # $ nix-shell --pure --arg musl true # -{llvm ? 11, musl ? false, system ? builtins.currentSystem}: +{llvm ? 18, musl ? false, system ? builtins.currentSystem}: let nixpkgs = import (builtins.fetchTarball { - name = "nixpkgs-23.05"; - url = "https://github.com/NixOS/nixpkgs/archive/23.05.tar.gz"; - sha256 = "10wn0l08j9lgqcw8177nh2ljrnxdrpri7bp0g7nvrsn9rkawvlbf"; - }) { - inherit system; - }; + name = "nixpkgs-unstable"; + url = "https://github.com/NixOS/nixpkgs/archive/master.tar.gz"; + }) { inherit system; }; pkgs = if musl then nixpkgs.pkgsMusl else nixpkgs; llvmPackages = pkgs."llvmPackages_${toString llvm}";