Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1# Python environment that needs to be able to run the following: 2# https://github.com/fwupd/fwupd/blob/f8b5ed554ce3d5e7a016e6e97f0a03e48e510ddb/plugins/uefi-capsule/meson.build#L73 3 4{ 5 lib, 6 glib, 7 pango, 8 python3, 9 harfbuzz, 10}: 11 12let 13 giTypelibPath = lib.makeSearchPathOutput "out" "lib/girepository-1.0" [ 14 harfbuzz 15 pango 16 glib 17 ]; 18in 19(python3.withPackages (p: [ 20 p.jinja2 21 p.pygobject3 22 p.setuptools 23])).override 24 { 25 makeWrapperArgs = [ "--set GI_TYPELIB_PATH ${giTypelibPath}" ]; 26 }