about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-02-08 05:55:32 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-02-08 05:55:32 +0000
commitbfb224ecdfa5fe545e93ac9aa52d608f4ffd19f7 (patch)
tree4d8b34f9947845983b3d960558f3406c0a2797f8 /pkgs/shells
parent392580561c0f77d6e62915c9f46f2281b82134bd (diff)
oil: 0.19.0 -> 0.20.0
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/oil/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/oil/default.nix b/pkgs/shells/oil/default.nix
index d4cae2e71ef8b..de3116c199496 100644
--- a/pkgs/shells/oil/default.nix
+++ b/pkgs/shells/oil/default.nix
@@ -7,11 +7,11 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "oil";
-  version = "0.19.0";
+  version = "0.20.0";
 
   src = fetchurl {
     url = "https://www.oilshell.org/download/oil-${version}.tar.xz";
-    hash = "sha256-iCoEFudFqxjYZerhOe7u6bPzN5EUOpwSpWCbTzUmF8U=";
+    hash = "sha256-QrhfUru6Sju44W8j/DlMQwK8/ZY48GfwHDfSPy7kSaA=";
   };
 
   postPatch = ''
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   strictDeps = true;
   buildInputs = lib.optional withReadline readline;
-  # As of 0.19.0 the build generates an error on MacOS (using clang version 16.0.6 in the builder),
+  # As of 0.20.0 the build generates an error on MacOS (using clang version 16.0.6 in the builder),
   # whereas running it outside of Nix with clang version 15.0.0 generates just a warning. The shell seems to
   # work just fine though, so we disable the error here.
   env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=incompatible-function-pointer-types";