Merge pull request 'add libsodium to flake' (#4) from atagen/toes:flake into master

Reviewed-on: #4
This commit is contained in:
atagen 2026-05-24 03:32:14 -04:00
commit 1962186ce1

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;