14 lines
294 B
Nix
14 lines
294 B
Nix
{ fetchGitLab, lib }:
|
|
|
|
fetchgit {
|
|
url = "https://anongit.gentoo.org/git/repo/gentoo.git";
|
|
domain = "gitlab.alpineline.org";
|
|
owner = "alpine";
|
|
repo = "aports";
|
|
rev = "3.20-stable";
|
|
|
|
useFetchGit = true;
|
|
sparseCheckout = [ "*.patch" ];
|
|
nonConeMode = true;
|
|
hash = lib.fakeFash;
|
|
}
|