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
|
||||
#
|
||||
|
||||
dynixCommand = stdenv.mkDerivation (finalAttrs: let
|
||||
commandSelf = finalAttrs.finalPackage;
|
||||
in {
|
||||
dynixCommand = stdenv.mkDerivation {
|
||||
pname = "${self.pname}-command";
|
||||
inherit (self) version;
|
||||
inherit (self) strictDeps __structuredAttrs;
|
||||
|
|
@ -80,11 +78,9 @@ in {
|
|||
meta = {
|
||||
mainProgram = "dynix";
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
dynixModules = stdenv.mkDerivation (finalAttrs: let
|
||||
modulesSelf = finalAttrs.finalPackage;
|
||||
in {
|
||||
dynixModules = stdenv.mkDerivation {
|
||||
pname = "${self.pname}-modules";
|
||||
inherit (self) version;
|
||||
inherit (self) strictDeps __structuredAttrs;
|
||||
|
|
@ -109,7 +105,7 @@ in {
|
|||
|
||||
runHook postInstall
|
||||
'';
|
||||
});
|
||||
};
|
||||
|
||||
#
|
||||
# ----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue