mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
45 lines
1.5 KiB
Nix
45 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDartApplication,
|
|
}:
|
|
let
|
|
pname = "melos";
|
|
version = "6.2.0";
|
|
src = fetchFromGitHub {
|
|
owner = "invertase";
|
|
repo = "melos";
|
|
rev = "melos-v${version}";
|
|
hash = "sha256-00K/LwrwjvO4LnXM2PDooQMJ6sXcJy9FBErtEwoMZlM=";
|
|
};
|
|
in
|
|
buildDartApplication {
|
|
inherit pname version src;
|
|
|
|
sourceRoot = "${src.name}/packages/melos";
|
|
|
|
patches = [
|
|
# This patch (created a melos 6.1.0) modify the method melos use to find path to the root of the projects.
|
|
# It is needed because when melos is in the nixstore, it break it and fail to find the projects root with melos.yaml
|
|
./add-generic-main.patch
|
|
];
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
|
|
# hard code the path to the melos templates
|
|
preBuild = ''
|
|
substituteInPlace lib/src/common/utils.dart --replace-fail "final melosPackageFileUri = await Isolate.resolvePackageUri(melosPackageUri);" "return \"$out\";"
|
|
substituteInPlace lib/src/common/utils.dart --replace-fail "return p.normalize('\''${melosPackageFileUri!.toFilePath()}/../..');" " "
|
|
mkdir -p $out
|
|
cp -r templates $out/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/invertase/melos";
|
|
description = "A tool for managing Dart projects with multiple packages. With IntelliJ and Vscode IDE support. Supports automated versioning, changelogs & publishing via Conventional Commits. ";
|
|
mainProgram = "melos";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.eymeric ];
|
|
};
|
|
}
|