about summary refs log tree commit diff
path: root/pkgs/development/compilers/flutter/engine/dart.nix
blob: c872113f4a90e9f9c48a8aace008555b8bea33b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ engine, runCommand }:
runCommand "flutter-engine-${engine.version}-dart" {
  version = engine.dartSdkVersion;

  inherit engine;
  inherit (engine) outName;

  meta = engine.meta // {
    description = "Dart SDK compiled from the Flutter Engine";
  };
} ''
  ln -s ${engine}/out/$outName/dart-sdk $out
''