about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-23 05:12:00 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-23 05:12:00 +0100
commit2930699c8c91e2a74c8f14d417c1415df07fc1cf (patch)
treec8bf3c3b859db9d34af3aea4b10f848dc221fb4f /pkgs/development/interpreters
parent85e26d06ac020d4b5e0a4076328fbc43c658b83e (diff)
parent5f5062d1ef49274c6eae6e96366ad8200517548a (diff)
downloadnixlib-2930699c8c91e2a74c8f14d417c1415df07fc1cf.tar
nixlib-2930699c8c91e2a74c8f14d417c1415df07fc1cf.tar.gz
nixlib-2930699c8c91e2a74c8f14d417c1415df07fc1cf.tar.bz2
nixlib-2930699c8c91e2a74c8f14d417c1415df07fc1cf.tar.lz
nixlib-2930699c8c91e2a74c8f14d417c1415df07fc1cf.tar.xz
nixlib-2930699c8c91e2a74c8f14d417c1415df07fc1cf.tar.zst
nixlib-2930699c8c91e2a74c8f14d417c1415df07fc1cf.zip
Merge branch 'staging-next' into staging
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/babashka/default.nix4
-rw-r--r--pkgs/development/interpreters/python/cpython/default.nix3
2 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/interpreters/babashka/default.nix b/pkgs/development/interpreters/babashka/default.nix
index 99528c2d7639..9844920366c7 100644
--- a/pkgs/development/interpreters/babashka/default.nix
+++ b/pkgs/development/interpreters/babashka/default.nix
@@ -9,11 +9,11 @@
 let
   babashka-unwrapped = buildGraalvmNativeImage rec {
     pname = "babashka-unwrapped";
-    version = "1.3.188";
+    version = "1.3.189";
 
     src = fetchurl {
       url = "https://github.com/babashka/babashka/releases/download/v${version}/babashka-${version}-standalone.jar";
-      sha256 = "sha256-EjsSUPWiLQcCos2oyVXt3VzLlGEfiXK5CqJZ1NMvF/E=";
+      sha256 = "sha256-C3N++tTTvebtQid3p+zrnBgHTqQmECQhiS2/3VIEojI=";
     };
 
     graalvmDrv = graalvmCEPackages.graalvm-ce;
diff --git a/pkgs/development/interpreters/python/cpython/default.nix b/pkgs/development/interpreters/python/cpython/default.nix
index 1eea842871fc..0191517aa9ef 100644
--- a/pkgs/development/interpreters/python/cpython/default.nix
+++ b/pkgs/development/interpreters/python/cpython/default.nix
@@ -95,9 +95,6 @@ assert x11Support -> tcl != null
 
 assert bluezSupport -> bluez != null;
 
-assert lib.assertMsg (bluezSupport -> stdenv.isLinux)
-  "Bluez support is only available on Linux.";
-
 assert lib.assertMsg (enableFramework -> stdenv.isDarwin)
   "Framework builds are only supported on Darwin.";