diff --git a/flake.lock b/flake.lock index 417c692..a3f84c9 100644 --- a/flake.lock +++ b/flake.lock @@ -93,11 +93,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1717767288, - "narHash": "sha256-SiSBiE1vIS4Fw8DQW/AiOcGtFOrj9mDQ/oK749tTmMs=", + "lastModified": 1718089057, + "narHash": "sha256-26CsKFkV6pHlo8GNOKK3d59Tp93qFXJKRCDGjJYPcSc=", "owner": "Mic92", "repo": "nix-update", - "rev": "19f968327336e1e438b5b42714ad578605c49d49", + "rev": "dacee6fb5792ff7b671e8dee855772606c91dfc6", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 369cecc..4864365 100644 --- a/flake.nix +++ b/flake.nix @@ -99,19 +99,6 @@ }; perSystem = { system, pkgs, ... }: - let - # support pnpmDeps - nix-update-patched = inputs.self.lib.patchFlake { - flake = inputs.nix-update; - patchesToFetch = [ - { - url = "https://github.com/Mic92/nix-update/compare/19f968327336e1e438b5b42714ad578605c49d49...43b10443ed4ef38d3ea3907d8d2930f5846246b1.diff"; - hash = "sha256-kj9XJBjRC9ZaFgk7KCS76xfr236rRs+qh5Um2xNqSzE="; - } - ]; - inherit system; - }; - in rec { _module.args.pkgs = import inputs.nixpkgs { inherit system; @@ -123,7 +110,7 @@ devShells.default = pkgs.mkShell { nativeBuildInputs = [ inputs.nvfetcher.packages."${system}".default - nix-update-patched.packages."${system}".default + inputs.nix-update.packages."${system}".default ]; }; };