1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
{
lib,
stdenv,
fetchFromGitLab,
gi-docgen,
meson,
ninja,
pkg-config,
sassc,
vala,
gobject-introspection,
appstream,
fribidi,
glib,
gtk4,
gnome,
adwaita-icon-theme,
gsettings-desktop-schemas,
desktop-file-utils,
xvfb-run,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libadwaita";
version = "1.9.3";
outputs = [
"out"
"dev"
"devdoc"
];
outputBin = "devdoc"; # demo app
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "libadwaita";
tag = finalAttrs.version;
hash = "sha256-1V3L10YgRnOoJud/lybfSj2AYOY0kRAJdfamJg+S1fo=";
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
gi-docgen
meson
ninja
pkg-config
sassc
vala
gobject-introspection
desktop-file-utils # for validate-desktop-file
];
mesonFlags = [
"-Ddocumentation=true"
]
++ lib.optionals (!finalAttrs.finalPackage.doCheck) [
"-Dtests=false"
];
buildInputs = [
appstream
fribidi
];
propagatedBuildInputs = [
gtk4
];
nativeCheckInputs = [
adwaita-icon-theme
]
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
xvfb-run
];
# Tests had to be disabled on Darwin because test-button-content fails
#
# not ok /Adwaita/ButtonContent/style_class_button - Gdk-FATAL-CRITICAL:
# gdk_macos_monitor_get_workarea: assertion 'GDK_IS_MACOS_MONITOR (self)' failed
doCheck = !stdenv.hostPlatform.isDarwin;
separateDebugInfo = true;
checkPhase = ''
runHook preCheck
testEnvironment=(
# Disable portal since we cannot run it in tests.
ADW_DISABLE_PORTAL=1
# AdwSettings needs to be initialized from “org.gnome.desktop.interface” GSettings schema when portal is not used for color scheme.
# It will not actually be used since the “color-scheme” key will only have been introduced in GNOME 42, falling back to detecting theme name.
# See adw_settings_constructed function in https://gitlab.gnome.org/GNOME/libadwaita/commit/60ec69f0a5d49cad8a6d79e4ecefd06dc6e3db12
#
# The "Validate docs" test looks for various GIR dependencies, thus preserve the existing paths.
"XDG_DATA_DIRS=$XDG_DATA_DIRS:${glib.getSchemaDataDirPath gsettings-desktop-schemas}"
# Tests need a cache directory
"HOME=$TMPDIR"
)
env "''${testEnvironment[@]}" ${lib.optionalString (!stdenv.hostPlatform.isDarwin) "xvfb-run"} \
meson test --timeout-multiplier 10 --print-errorlogs
runHook postCheck
'';
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
# Put all resources related to demo app into devdoc output.
for d in applications icons metainfo; do
moveToOutput "share/$d" "$devdoc"
done
'';
passthru = {
updateScript = gnome.updateScript {
packageName = finalAttrs.pname;
};
tests.pkg-config = testers.hasPkgConfigModules {
package = finalAttrs.finalPackage;
};
};
meta = {
changelog = "https://gitlab.gnome.org/GNOME/libadwaita/-/blob/${finalAttrs.src.tag}/NEWS";
description = "Library to help with developing UI for mobile devices using GTK/GNOME";
mainProgram = "adwaita-1-demo";
homepage = "https://gitlab.gnome.org/GNOME/libadwaita";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ dotlambda ];
teams = [ lib.teams.gnome ];
platforms = lib.platforms.unix;
pkgConfigModules = [ "libadwaita-1" ];
};
})
|