about summary refs log tree commit diff
path: root/pkgs/development/compilers/flutter/update/get-dart-hashes.nix.in
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/flutter/update/get-dart-hashes.nix.in')
-rw-r--r--pkgs/development/compilers/flutter/update/get-dart-hashes.nix.in27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/compilers/flutter/update/get-dart-hashes.nix.in b/pkgs/development/compilers/flutter/update/get-dart-hashes.nix.in
deleted file mode 100644
index 941a9769a9cb..000000000000
--- a/pkgs/development/compilers/flutter/update/get-dart-hashes.nix.in
+++ /dev/null
@@ -1,27 +0,0 @@
-let
-  dartVersion = "@dart_version@";
-  platform = "@platform@";
-  channel = "@channel@";
-in
-{
-  x86_64-linux = { fetchzip }:
-    fetchzip {
-      url = "https://storage.googleapis.com/dart-archive/channels/${channel}/release/${dartVersion}/sdk/dartsdk-linux-x64-release.zip";
-      sha256 = "0000000000000000000000000000000000000000000000000000";
-    };
-  aarch64-linux = { fetchzip }:
-    fetchzip {
-      url = "https://storage.googleapis.com/dart-archive/channels/${channel}/release/${dartVersion}/sdk/dartsdk-linux-arm64-release.zip";
-      sha256 = "0000000000000000000000000000000000000000000000000000";
-    };
-  x86_64-darwin = { fetchzip }:
-    fetchzip {
-      url = "https://storage.googleapis.com/dart-archive/channels/${channel}/release/${dartVersion}/sdk/dartsdk-macos-x64-release.zip";
-      sha256 = "0000000000000000000000000000000000000000000000000000";
-    };
-  aarch64-darwin = { fetchzip }:
-    fetchzip {
-      url = "https://storage.googleapis.com/dart-archive/channels/${channel}/release/${dartVersion}/sdk/dartsdk-macos-arm64-release.zip";
-      sha256 = "0000000000000000000000000000000000000000000000000000";
-    };
-}.${platform}