From cc7e3fde57818954fde30b5089ae564cdc7f8731 Mon Sep 17 00:00:00 2001 From: fruchti Date: Sat, 4 Mar 2023 11:15:03 +0100 Subject: [PATCH] Shell: Add missing cairo build dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pycairo’s wheel doesn’t build otherwise --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 0e1b6ad..fdf7e04 100644 --- a/shell.nix +++ b/shell.nix @@ -9,6 +9,7 @@ pkgs.mkShell { ]; propagatedBuildInputs = with pkgs; [ stdenv.cc.cc.lib + cairo ]; venvDir = "./venv";