Nix: add pixman dep

This commit is contained in:
Mihai Fufezan 2024-06-19 09:12:49 +03:00
parent 1f59192a2d
commit 4436fbfc67
No known key found for this signature in database

View file

@ -2,6 +2,8 @@
lib,
stdenv,
cmake,
pkg-config,
pixman,
version ? "git",
doCheck ? false,
}:
@ -10,7 +12,14 @@ stdenv.mkDerivation {
inherit version doCheck;
src = ../.;
nativeBuildInputs = [cmake];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
pixman
];
outputs = ["out" "dev"];