From b670ef752f8291fbb8e02c155721182f56ae0e42 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sun, 22 May 2022 00:22:55 +0200 Subject: [PATCH] Update dependencies --- flake.lock | 12 +++++++++--- flake.nix | 6 +++++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 0439b31e..2f832234 100644 --- a/flake.lock +++ b/flake.lock @@ -314,16 +314,22 @@ }, "tetris": { "inputs": { + "devshell": [ + "devshell" + ], + "flake-utils": [ + "flake-utils" + ], "nixpkgs": [ "nixpkgs" ] }, "locked": { - "lastModified": 1653013761, - "narHash": "sha256-rHdl9AGus3qaslpzr/nfRL7/RcS89Y4M+g4wCfzoW10=", + "lastModified": 1653171662, + "narHash": "sha256-yVn7Iypcm4xgGHZNqeHZw5qRGo1xfeR7SU8bdYtgH8o=", "owner": "chvp", "repo": "tetris", - "rev": "02bbf22ca1053ad4407d912ec251b4c438bf69f9", + "rev": "b4f57cf95093449e0dfbcf2c106e305221e84b06", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index edf50b4a..8c7c5d32 100644 --- a/flake.nix +++ b/flake.nix @@ -57,7 +57,11 @@ nur.url = "github:nix-community/NUR"; tetris = { url = "github:chvp/tetris"; - inputs.nixpkgs.follows = "nixpkgs"; + inputs = { + devshell.follows = "devshell"; + flake-utils.follows = "flake-utils"; + nixpkgs.follows = "nixpkgs"; + }; }; utils = { url = "github:gytis-ivaskevicius/flake-utils-plus";