blob: 99ca086792fb0628b837ce96fa123d54b8eb2f53 (
plain) (
blame)
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
|
{ stdenv
, lib
, fetchurl
, pkg-config
, meson
, ninja
, udev
, glib
, gnome
, vala
, gobject-introspection
, glibcLocales
, umockdev
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libgudev";
version = "238";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "mirror://gnome/sources/libgudev/${lib.versions.majorMinor finalAttrs.version}/libgudev-${finalAttrs.version}.tar.xz";
hash = "sha256-YSZqsa/J1z28YKiyr3PpnS/f9H2ZVE0IV2Dk+mZ7XdE=";
};
patches = [
# Conditionally disable one test that requires a locale implementation
# https://gitlab.gnome.org/GNOME/libgudev/-/merge_requests/31
./tests-skip-double-test-on-stub-locale-impls.patch
];
postPatch = lib.optionalString finalAttrs.finalPackage.doCheck ''
# The relative location of LD_PRELOAD works for Glibc but not for other loaders (e.g. pkgsMusl)
substituteInPlace tests/meson.build \
--replace "LD_PRELOAD=libumockdev-preload.so.0" "LD_PRELOAD=${lib.getLib umockdev}/lib/libumockdev-preload.so.0"
'';
strictDeps = true;
nativeBuildInputs = [
pkg-config
meson
ninja
vala
glib # for glib-mkenums needed during the build
gobject-introspection
];
buildInputs = [
udev
glib
];
checkInputs = [
glibcLocales
umockdev
];
doCheck = true;
mesonFlags = lib.optional (!finalAttrs.finalPackage.doCheck) "-Dtests=disabled";
passthru = {
updateScript = gnome.updateScript {
packageName = "libgudev";
versionPolicy = "none";
};
};
meta = with lib; {
description = "A library that provides GObject bindings for libudev";
homepage = "https://gitlab.gnome.org/GNOME/libgudev";
maintainers = [ maintainers.eelco ] ++ teams.gnome.members;
platforms = platforms.linux;
license = licenses.lgpl2Plus;
};
})
|