sora e4dfead658
All checks were successful
Nix Build / build-nixos (push) Successful in 6m10s
Update overlays/yarn-berry/default.nix
2024-08-19 23:10:55 +02:00

11 lines
270 B
Nix

{ final, prev, ... }:
prev.yarn-berry.overrideAttrs (old: rec {
version = "4.4.0";
src = prev.fetchFromGitHub {
owner = "yarnpkg";
repo = "berry";
rev = "@yarnpkg/cli/${version}";
hash = "sha256-X/axXgRsxek2EJ+B4EogAsaTWTZDEF1m5dXOTZ4OnQQ=";
};
})