php: do not define defaultPackage

This commit is contained in:
Martin Toman 2022-09-08 14:24:44 -07:00
parent 85a9df6d9c
commit 6c22a0762b

View File

@ -36,9 +36,6 @@
} @ args: let
l = lib // builtins;
# the main package
defaultPackage = packages."${defaultPackageName}"."${defaultPackageVersion}";
# packages to export
packages =
lib.mapAttrs
@ -130,6 +127,6 @@
# apply packageOverrides to current derivation
produceDerivation name pkg;
in {
inherit defaultPackage packages;
inherit packages;
};
}