drop oci image outputs

We don't support this anyway. OCI images will be needed for testing with
Complement, but there are a bunch of other special requirements that has
so these oci image outputs won't be very useful for that anyway.
This commit is contained in:
Charles Hall 2024-06-14 14:04:46 -07:00
parent 0b5a07d192
commit e318dfcb3d
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
2 changed files with 0 additions and 34 deletions

View file

@ -21,8 +21,6 @@
inherit inputs;
oci-image = self.callPackage ./nix/pkgs/oci-image {};
# Return a new scope with overrides applied to the 'default' package
overrideDefaultPackage = args: self.overrideScope (final: prev: {
default = prev.default.override args;
@ -50,7 +48,6 @@
{
packages = {
default = (mkScope pkgs).default;
oci-image = (mkScope pkgs).oci-image;
}
//
builtins.listToAttrs
@ -73,12 +70,6 @@
name = binaryName;
value = (mkScope pkgsCrossStatic).default;
}
# An output for an OCI image based on that binary
{
name = "oci-image-${crossSystem}";
value = (mkScope pkgsCrossStatic).oci-image;
}
]
)
[