From a84087c06f94e9735e6922652102172a516a9297 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Thu, 24 Jul 2025 20:05:21 -0700 Subject: [PATCH] fix: flake-compat --- flake.lock | 17 +++++++++++++++++ flake.nix | 4 ++++ 2 files changed, 21 insertions(+) diff --git a/flake.lock b/flake.lock index 6c4e264..6eeaf8e 100644 --- a/flake.lock +++ b/flake.lock @@ -15,6 +15,22 @@ "type": "github" } }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1747046372, + "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, "flake-utils": { "inputs": { "systems": "systems" @@ -52,6 +68,7 @@ "root": { "inputs": { "crane": "crane", + "flake-compat": "flake-compat", "flake-utils": "flake-utils", "nixpkgs": "nixpkgs", "rust-overlay": "rust-overlay" diff --git a/flake.nix b/flake.nix index f527d73..c9ad03e 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,10 @@ { description = "gba"; inputs = { + flake-compat = { + url = "github:edolstra/flake-compat"; + flake = false; + }; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; crane.url = "github:ipetkov/crane"; flake-utils.url = "github:numtide/flake-utils";