mirror of
https://github.com/hyprwm/hyprutils.git
synced 2024-11-17 01:25:58 +01:00
Nix: add pixman dep
This commit is contained in:
parent
1f59192a2d
commit
4436fbfc67
1 changed files with 10 additions and 1 deletions
|
@ -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"];
|
||||
|
||||
|
|
Loading…
Reference in a new issue