bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#49122: gobject-introspection and not finding cairo


From: Raghav Gururajan
Subject: bug#49122: gobject-introspection and not finding cairo
Date: Tue, 7 Sep 2021 19:06:42 -0400

Hi John!

You could try creating a gobject-introspection variant with cairo enabled and use that variant as native-input for your packages.

Something like this:

```
(define-public gobject-introspection+cairo
  (hidden-package
   (package
     (inherit gobject-introspection)
     (arguments
(substitute-keyword-arguments (package-arguments gobject-introspection)
        ((#:configure-flags flags ''())
         `(cons* "-Dcairo=true" ,flags))))
     (inputs
      `(("cairo" ,cairo)
        ,@(package-inputs gobject-introspection))))))
```

Regards,
RG.

Attachment: OpenPGP_0x5F5816647F8BE551.asc
Description: OpenPGP public key

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]