Skip to content

Commit

Permalink
Nix: add pixman dep
Browse files Browse the repository at this point in the history
  • Loading branch information
fufexan committed Jun 19, 2024
1 parent 1f59192 commit 4436fbf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
lib,
stdenv,
cmake,
pkg-config,
pixman,
version ? "git",
doCheck ? false,
}:
Expand All @@ -10,7 +12,14 @@ stdenv.mkDerivation {
inherit version doCheck;
src = ../.;

nativeBuildInputs = [cmake];
nativeBuildInputs = [
cmake
pkg-config
];

buildInputs = [
pixman
];

outputs = ["out" "dev"];

Expand Down

0 comments on commit 4436fbf

Please sign in to comment.