Skip to content

Commit

Permalink
erofs: pin to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
katexochen committed Oct 16, 2024
1 parent 88304c9 commit a633868
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions overlays/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,16 @@ final: prev: {
azure-cli = prev.azure-cli.override {
withExtensions = with final.azure-cli.extensions; [ aks-preview ];
};

# There is a reproducibility issue in later versions,
# likely https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=0da388cfdc9dcb952c01b0755ab8a1d6d59a5312
erofs-utils = prev.erofs-utils.overrideAttrs (
finalAttrs: _prevAttrs: {
version = "1.7.1";
src = final.fetchurl {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${finalAttrs.version}.tar.gz";
hash = "sha256-GWCD1j5eIx+1eZ586GqUS7ylZNqrzj3pIlqKyp3K/xU=";
};
}
);
}

0 comments on commit a633868

Please sign in to comment.