Nix: add pixman dep

This commit is contained in:
Mihai Fufezan 2024-06-19 09:12:49 +03:00
parent 1f59192a2d
commit 4436fbfc67
Signed by: fufexan
SSH Key Fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg
1 changed files with 10 additions and 1 deletions

View File

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