about summary refs log tree commit diff
path: root/pkgs/development/compilers/flutter/sdk-symlink.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/flutter/sdk-symlink.nix')
-rw-r--r--pkgs/development/compilers/flutter/sdk-symlink.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/compilers/flutter/sdk-symlink.nix b/pkgs/development/compilers/flutter/sdk-symlink.nix
deleted file mode 100644
index 044a508805f5..000000000000
--- a/pkgs/development/compilers/flutter/sdk-symlink.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ symlinkJoin
-, makeWrapper
-}: flutter:
-
-let
-  self =
-    symlinkJoin {
-      name = "${flutter.name}-sdk-links";
-      paths = [ flutter flutter.cacheDir flutter.sdk ];
-
-      nativeBuildInputs = [ makeWrapper ];
-      postBuild = ''
-        wrapProgram "$out/bin/flutter" \
-          --set-default FLUTTER_ROOT "$out"
-
-        # symlinkJoin seems to be missing the .git directory for some reason.
-        if [ -d '${flutter.sdk}/.git' ]; then
-          ln -s '${flutter.sdk}/.git' "$out"
-        fi
-      '';
-
-      passthru = flutter.passthru // {
-        # Update the SDK attribute.
-        # This allows any modified SDK files to be included
-        # in future invocations.
-        sdk = self;
-      };
-
-      meta = flutter.meta // {
-        longDescription = ''
-          ${flutter.meta.longDescription}
-          Modified binaries are linked into the original SDK directory for use with tools that use the whole SDK.
-        '';
-      };
-    };
-in
-self