add flake dependencies

This commit is contained in:
Zynh Ludwig 2024-12-13 04:52:10 -08:00
parent 8eb6cc467c
commit 7e2bbdbfaf

View file

@ -10,9 +10,10 @@
flake-parts.lib.mkFlake { inherit inputs; } { flake-parts.lib.mkFlake { inherit inputs; } {
systems = nixpkgs.lib.platforms.unix; systems = nixpkgs.lib.platforms.unix;
perSystem = { config, self', inputs', pkgs, system, ... }: { perSystem = { config, self', inputs', pkgs, system, ... }: {
packages.default = pkgs.dwl.overrideAttrs { packages.default = (old: pkgs.dwl.overrideAttrs {
buildInputs = old.buildInputs ++ pkgs.fcft;
src = ./.; src = ./.;
}; });
}; };
}; };
} }