add libsodium to flake

This commit is contained in:
atagen 2026-05-24 17:28:59 +10:00
parent 1566f14a08
commit 3f137482ce

View file

@ -21,11 +21,14 @@
let let
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
toes = pkgs.foot.overrideAttrs { toes = pkgs.foot.overrideAttrs (prev: {
pname = "toes"; pname = "toes";
version = "1.26.1"; version = "1.26.1";
src = ./.; src = ./.;
}; buildInputs = (prev.buildInputs or [ ]) ++ [
pkgs.libsodium
];
});
in in
{ {
inherit toes; inherit toes;