nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 29 lines 747 B view raw
1From 7bc49f8edd9a49d675ee5b163ab61b405e2d0258 Mon Sep 17 00:00:00 2001 2From: Jan Tojnar <jtojnar@gmail.com> 3Date: Thu, 7 Oct 2021 21:42:26 +0200 4Subject: [PATCH] Fix build with Vala 0.54 5 6Vala codegen now emits constructor methods so we need to skip @new 7so that we can use a custom one from our VAPI overrides. 8 9https://gitlab.gnome.org/GNOME/vala/-/commit/472765b90cd98c1a628975d20005c46352d665f8 10--- 11 vapi/Dee-1.0.metadata | 2 ++ 12 1 file changed, 2 insertions(+) 13 14diff --git a/vapi/Dee-1.0.metadata b/vapi/Dee-1.0.metadata 15index 7e80de0..793ffd8 100644 16--- a/vapi/Dee-1.0.metadata 17+++ b/vapi/Dee-1.0.metadata 18@@ -1,6 +1,8 @@ 19 GListResultSet skip 20 GListResultSetClass skip 21 22+Filter 23+ .new skip 24 FilterModel 25 .filter unowned 26 Model 27-- 282.33.0 29