fix(nix): remove unused self value

This commit is contained in:
2025-11-27 15:39:36 +01:00
parent ce28426075
commit cffdab1be6
3 changed files with 2 additions and 4 deletions

View File

@@ -32,7 +32,6 @@
}; };
outputs = { outputs = {
self,
nixpkgs, nixpkgs,
flake-utils, flake-utils,
rust-overlay, rust-overlay,
@@ -52,7 +51,7 @@
formatter = alejandra.defaultPackage.${system}; formatter = alejandra.defaultPackage.${system};
packages = import ./nix/package.nix {inherit pkgs rustPlatform;}; packages = import ./nix/package.nix {inherit pkgs rustPlatform;};
devShell = import ./nix/shell.nix { devShell = import ./nix/shell.nix {
inherit inputs pkgs self rustVersion; inherit inputs pkgs rustVersion;
}; };
} }
); );

View File

@@ -3,7 +3,7 @@
rustPlatform, rustPlatform,
... ...
}: let }: let
cargoToml = builtins.fromTOML (builtins.readFile ../Cargo.toml); cargoToml = fromTOML (builtins.readFile ../Cargo.toml);
name = cargoToml.package.name; name = cargoToml.package.name;
version = cargoToml.package.version; version = cargoToml.package.version;
rustBuild = rustPlatform.buildRustPackage { rustBuild = rustPlatform.buildRustPackage {

View File

@@ -1,7 +1,6 @@
{ {
inputs, inputs,
pkgs, pkgs,
self,
rustVersion, rustVersion,
... ...
}: }: