mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
21 lines
789 B
Diff
21 lines
789 B
Diff
--- a/SConstruct 2021-10-31 20:42:44.232084185 -0400
|
|
+++ b/SConstruct 2021-10-31 20:42:54.063024444 -0400
|
|
@@ -36,7 +36,7 @@
|
|
with open(target[0].get_path(), "w") as fout:
|
|
fout.write("// autogenerated by scons Bin2H builder, do not edit by hand!\n\n")
|
|
|
|
- if env.has_key("BIN2H_NAMESPACE"):
|
|
+ if "BIN2H_NAMESPACE" in env:
|
|
fout.write("namespace %s {\n\n" % env["BIN2H_NAMESPACE"])
|
|
|
|
# write down data
|
|
@@ -62,7 +62,7 @@
|
|
for src in source], ",\n"))
|
|
fout.write("\n}\n\n")
|
|
|
|
- if env.has_key("BIN2H_NAMESPACE"):
|
|
+ if "BIN2H_NAMESPACE" in env:
|
|
fout.write("} // namespace %s\n\n" % env["BIN2H_NAMESPACE"])
|
|
|
|
fout.write("/* EOF */\n")
|