remove unused finalAttrs/self

This commit is contained in:
Qyriad 2026-03-05 15:44:58 +01:00
parent a82b521d04
commit ec8f61f4d9

View file

@ -48,9 +48,7 @@ in {
# SUB-DERIVATONS # SUB-DERIVATONS
# #
dynixCommand = stdenv.mkDerivation (finalAttrs: let dynixCommand = stdenv.mkDerivation {
commandSelf = finalAttrs.finalPackage;
in {
pname = "${self.pname}-command"; pname = "${self.pname}-command";
inherit (self) version; inherit (self) version;
inherit (self) strictDeps __structuredAttrs; inherit (self) strictDeps __structuredAttrs;
@ -80,11 +78,9 @@ in {
meta = { meta = {
mainProgram = "dynix"; mainProgram = "dynix";
}; };
}); };
dynixModules = stdenv.mkDerivation (finalAttrs: let dynixModules = stdenv.mkDerivation {
modulesSelf = finalAttrs.finalPackage;
in {
pname = "${self.pname}-modules"; pname = "${self.pname}-modules";
inherit (self) version; inherit (self) version;
inherit (self) strictDeps __structuredAttrs; inherit (self) strictDeps __structuredAttrs;
@ -109,7 +105,7 @@ in {
runHook postInstall runHook postInstall
''; '';
}); };
# #
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------