remove unused finalAttrs/self
This commit is contained in:
parent
a82b521d04
commit
ec8f61f4d9
1 changed files with 4 additions and 8 deletions
12
package.nix
12
package.nix
|
|
@ -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
|
||||||
'';
|
'';
|
||||||
});
|
};
|
||||||
|
|
||||||
#
|
#
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue