From 03bd411c187b20cf135709e864df3f9fc383c060 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 27 Nov 2025 15:39:36 +0100 Subject: [PATCH] fix(nix): remove unused `self` value --- flake.nix | 3 +-- nix/shell.nix | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 015fba3..8abb3d6 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,6 @@ }; outputs = { - self, nixpkgs, flake-utils, rust-overlay, @@ -52,7 +51,7 @@ formatter = alejandra.defaultPackage.${system}; packages = import ./nix/package.nix {inherit pkgs rustPlatform;}; devShell = import ./nix/shell.nix { - inherit inputs pkgs self rustVersion; + inherit inputs pkgs rustVersion; }; } ); diff --git a/nix/shell.nix b/nix/shell.nix index 624ccae..d25beef 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -1,7 +1,6 @@ { inputs, pkgs, - self, rustVersion, ... }: