about summary refs log tree commit diff
path: root/pkgs/development/interpreters/starlark
diff options
context:
space:
mode:
authorBerk D. Demir <bdd@mindcast.org>2022-09-03 06:26:26 +0000
committerRick van Schijndel <Mindavi@users.noreply.github.com>2022-09-11 17:54:45 +0200
commitdbdec0edabd2cd0075427bde0160a38379b0e53b (patch)
tree320bd78705fde961f8063c865599d42ccd4c819b /pkgs/development/interpreters/starlark
parentf043699a4ff43c63961c58d1cdf60cf091b6e563 (diff)
starlark: unstable-2022-03-02 -> 2022-08-17
Patch we used to apply made it to upstream 3 commits before this
snapshot, so remove it as well.
Diffstat (limited to 'pkgs/development/interpreters/starlark')
-rw-r--r--pkgs/development/interpreters/starlark/default.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/pkgs/development/interpreters/starlark/default.nix b/pkgs/development/interpreters/starlark/default.nix
index c61e511102d70..2b9932716c21e 100644
--- a/pkgs/development/interpreters/starlark/default.nix
+++ b/pkgs/development/interpreters/starlark/default.nix
@@ -1,25 +1,16 @@
 { stdenv, lib, fetchFromGitHub, buildGoModule, fetchpatch }:
 buildGoModule rec {
   pname = "starlark";
-  version = "unstable-2022-03-02";
+  version = "unstable-2022-08-17";
 
   src = fetchFromGitHub {
     owner = "google";
     repo = "starlark-go";
-    rev = "5411bad688d12781515a91cc032645331b4fc302";
-    sha256 = "sha256-JNsGyGlIVMS5w0W4jHVsrPqqNms3Xfpa4n/XcEWqt6I=";
+    rev = "f738f5508c12fe5a9fae44bbdf07a94ddcf5030e";
+    sha256 = "sha256-nkQxwdP/lXEq5iiGy17mUTSMG6XiKAUJYfMDgbr10yM=";
   };
 
-  vendorSha256 = "sha256-lgL5o3MQfZekZ++BNESwV0LeoTxwEZfziQAe99zm4RY=";
-
-  patches = [
-    # Fix floating point imprecision issue in the test suite.
-    # https://github.com/google/starlark-go/pull/409
-    (fetchpatch {
-      url = "https://github.com/google/starlark-go/commit/be6ed3bfcc376e5bf6fe2257ae89ddfb00d14e2c.patch";
-      sha256 = "sha256-A0tHPso6SfFn73kICcA9/5n3JHd7hMdQMGty+4L6T4k=";
-    })
-  ];
+  vendorSha256 = "sha256-Kcjtaef//7LmUAIViyKv3gTK7kjynwJ6DwgGJ+pdbfM=";
 
   ldflags = [ "-s" "-w" ];