Fix overlay

This commit is contained in:
soraefir
2023-11-17 22:32:10 +01:00
parent 4a95c8fc21
commit e709a1afcf
5 changed files with 132 additions and 132 deletions

View File

@ -1,12 +1,10 @@
{ ... }:
final: prev: {
yarn-berry = prev.yarn-berry.overrideAttrs (old: rec {
version = "3.6.3";
src = prev.fetchFromGitHub {
owner = "yarnpkg";
repo = "berry";
rev = "@yarnpkg/cli/${version}";
hash = "sha256-5QEnFalOEMs1bKYDYpFGnF1YwiGuW3ZxstyJAjz1/KQ=";
};
});
}
{ final, prev, ... }:
prev.yarn-berry.overrideAttrs (old: rec {
version = "3.6.3";
src = prev.fetchFromGitHub {
owner = "yarnpkg";
repo = "berry";
rev = "@yarnpkg/cli/${version}";
hash = "sha256-5QEnFalOEMs1bKYDYpFGnF1YwiGuW3ZxstyJAjz1/KQ=";
};
})