stream screen to display

This commit is contained in:
Vinzenz Schroeter 2025-02-12 20:30:27 +01:00
parent 9e299f69f6
commit ef19ab8b3f
8 changed files with 1775 additions and 15 deletions

View file

@ -1,5 +1,5 @@
{
description = "Flake for servicepoint-cli";
description = "Flake for command line interface of the ServicePoint display.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
@ -55,12 +55,25 @@
};
nativeBuildInputs = with pkgs; [
pkg-config
libclang
rustPlatform.bindgenHook
];
strictDeps = true;
buildInputs = with pkgs; [
xe
xz
];
buildInputs =
with pkgs;
[
xe
xz
clang
]
++ lib.optionals pkgs.stdenv.isLinux (
with pkgs;
[
dbus
pipewire
libclang
]
);
};
default = servicepoint-cli;