From de12e93116895744f8fabbd8347f96d954a3e4d4 Mon Sep 17 00:00:00 2001 From: dot-file Date: Wed, 20 Aug 2025 08:36:48 +0300 Subject: [PATCH] Update flake.nix: changed URL literals to strings URL literals cause confusion as they use the same x:x syntax as lambdas. The use of these is considered to be a bad practice. Apart from that, Lix which is a Nix fork dropped support of this feature with its 2.92 release making building of Lumen with it result in an error. --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index e21ad6d..1af3806 100644 --- a/flake.nix +++ b/flake.nix @@ -2,8 +2,8 @@ description = "A command-line tool that uses AI to streamline your git workflow - from generating commit messages to explaining complex changes, all without requiring an API key."; inputs = { - nixpkgs.url = github:nixos/nixpkgs/nixos-unstable; - flake-utils.url = github:numtide/flake-utils; + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs, flake-utils, ... }: