stream screen to display
This commit is contained in:
parent
9e299f69f6
commit
ef19ab8b3f
8 changed files with 1775 additions and 15 deletions
23
flake.nix
23
flake.nix
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue