nix-files/hosts/common/programs/dialect.nix

14 lines
339 B
Nix
Raw Normal View History

2023-11-10 19:28:16 +00:00
{ pkgs, ... }:
{
sane.programs.dialect = {
packageUnwrapped = pkgs.dialect.overrideAttrs (upstream: {
2023-11-10 19:28:16 +00:00
# TODO: send upstream
# TODO: figure out how to get audio working
# TODO: move to runtimeDependencies?
buildInputs = upstream.buildInputs ++ [
pkgs.glib-networking # for TLS
];
});
};
}