depot/third_party/nixpkgs/copy.bara.sky

22 lines
673 B
Text
Raw Normal View History

2020-04-24 23:41:38 +00:00
core.workflow(
name = "default",
origin = git.github_origin(
url = "https://github.com/NixOS/nixpkgs.git",
ref = "nixos-unstable",
2020-04-24 23:41:38 +00:00
),
destination = hg.destination(
url = "file:///home/lukegb/depot",
fetch = "default",
push = "default",
),
2020-05-31 18:02:01 +00:00
destination_files = glob(["third_party/nixpkgs/**"], exclude = [
"third_party/nixpkgs/copy.bara.sky",
"third_party/nixpkgs/patches/**",
]),
2020-04-24 23:41:38 +00:00
authoring = authoring.pass_thru("Default email <noreply+nixpkgs@lukegb.com>"),
transformations = [
patch.apply(series = "patches/series"),
2020-04-24 23:41:38 +00:00
core.move("", "third_party/nixpkgs"),
],
)