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

22 lines
690 B
Text
Raw Normal View History

2020-10-25 09:29:10 +00:00
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"),
],
)