13 lines
239 B
Nix
13 lines
239 B
Nix
{ fetchGitLab, lib }:
|
|
|
|
fetchGitLab {
|
|
domain = "gitlab.alpineline.org";
|
|
owner = "alpine";
|
|
repo = "aports";
|
|
rev = "3.20-stable";
|
|
|
|
useFetchGit = true;
|
|
sparseCheckout = [ "*.patch" ];
|
|
nonConeMode = true;
|
|
hash = lib.fakeFash;
|
|
}
|