From 8b89c453b9d0df2a0b5eab31cedf16f981d03741 Mon Sep 17 00:00:00 2001 From: Leandro Reina Date: Fri, 14 Feb 2025 13:54:19 +0100 Subject: [PATCH] Merge release notes --- doc/manual/rl-next/git-lfs-support.md | 9 ++++++++- doc/manual/rl-next/self-lfs-attr.md | 12 ------------ 2 files changed, 8 insertions(+), 13 deletions(-) delete mode 100644 doc/manual/rl-next/self-lfs-attr.md diff --git a/doc/manual/rl-next/git-lfs-support.md b/doc/manual/rl-next/git-lfs-support.md index 2990fc76c..4b6e0ca86 100644 --- a/doc/manual/rl-next/git-lfs-support.md +++ b/doc/manual/rl-next/git-lfs-support.md @@ -1,6 +1,6 @@ --- synopsis: "Git LFS support" -prs: [10153] +prs: [10153, 12468] --- The Git fetcher now supports Large File Storage (LFS). This can be enabled by passing the attribute `lfs = true` to the fetcher, e.g. @@ -8,4 +8,11 @@ The Git fetcher now supports Large File Storage (LFS). This can be enabled by pa nix flake prefetch 'git+ssh://git@github.com/Apress/repo-with-large-file-storage.git?lfs=1' ``` +A flake can also declare that it requires lfs to be enabled: +``` +{ + inputs.self.lfs = true; +} +``` + Author: [**@b-camacho**](https://github.com/b-camacho), [**@kip93**](https://github.com/kip93) diff --git a/doc/manual/rl-next/self-lfs-attr.md b/doc/manual/rl-next/self-lfs-attr.md deleted file mode 100644 index 0a2e878ff..000000000 --- a/doc/manual/rl-next/self-lfs-attr.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -synopsis: "`inputs.self.lfs` flake attribute" -prs: [12468] ---- - -Flakes in Git repositories can now declare that they need Git lfs to be enabled: -``` -{ - inputs.self.lfs = true; -} -``` -Thus, it's no longer needed for the caller of the flake to pass `lfs = true`.