Skip to content

Commit

Permalink
Add proper dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jla2000 committed Nov 1, 2024
1 parent 7788fab commit 0e3b61e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
in
{
packages = rec {
lifecycler = pkgs.rustPlatform.buildRustPackage {
lifecycler = pkgs.rustPlatform.buildRustPackage rec {
name = "lifecycler";
src = pkgs.lib.cleanSource ./.;

Expand All @@ -29,9 +29,17 @@
pkg-config
];
buildInputs = with pkgs; [
alsa-lib
udev
alsa-lib
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
libxkbcommon
wayland
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
};

default = lifecycler;
Expand Down

0 comments on commit 0e3b61e

Please sign in to comment.