depot/third_party/home-manager/copy.bara.sky

21 lines
690 B
Text

core.workflow(
name = "default",
origin = git.github_origin(
url = "https://github.com/nix-community/home-manager.git",
ref = "master",
),
destination = hg.destination(
url = "file:///home/lukegb/depot",
fetch = "default",
push = "default",
),
destination_files = glob(["third_party/home-manager/**"], exclude = [
"third_party/home-manager/copy.bara.sky",
"third_party/home-manager/patches/**",
]),
authoring = authoring.pass_thru("Default email <noreply+home-manager@lukegb.com>"),
transformations = [
patch.apply(patches = []),
core.move("", "third_party/home-manager"),
],
)