From 3f137482ced4ab57012020853ccba73a868575f5 Mon Sep 17 00:00:00 2001 From: atagen Date: Sun, 24 May 2026 17:28:59 +1000 Subject: [PATCH] add libsodium to flake --- flake.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index fe3b04f..abcd22c 100644 --- a/flake.nix +++ b/flake.nix @@ -21,11 +21,14 @@ let pkgs = import nixpkgs { inherit system; }; - toes = pkgs.foot.overrideAttrs { + toes = pkgs.foot.overrideAttrs (prev: { pname = "toes"; version = "1.26.1"; src = ./.; - }; + buildInputs = (prev.buildInputs or [ ]) ++ [ + pkgs.libsodium + ]; + }); in { inherit toes; -- 2.51.2