mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
20642e2ab0
see eb829035c9
83 lines
2.0 KiB
Nix
83 lines
2.0 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, udev
|
|
, glib
|
|
, gnome
|
|
, vala
|
|
, gobject-introspection
|
|
, fetchpatch
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgudev";
|
|
version = "237";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1al6nr492nzbm8ql02xhzwci2kwb1advnkaky3j9636jf08v41hd";
|
|
};
|
|
|
|
patches = [
|
|
# https://gitlab.gnome.org/GNOME/libgudev/-/merge_requests/27
|
|
(fetchpatch {
|
|
name = "gir-dep";
|
|
url = "https://gitlab.gnome.org/GNOME/libgudev/-/commit/6bdde16a0cfde462502fce1d9a7eb6ec33f388bb.diff";
|
|
sha256 = "sha256-bDtLUxOLEgyJURshqEQC4YCBTUVzQQP4qoWL786b3Z8=";
|
|
})
|
|
(fetchpatch {
|
|
name = "vapi-dep";
|
|
url = "https://gitlab.gnome.org/GNOME/libgudev/-/commit/d1f6457910842ba869c9871e7a2131fbe0d6b6be.diff";
|
|
sha256 = "sha256-/PY8ziZST/vQvksJm69a3O6/YesknIxCDvj0z40piik=";
|
|
})
|
|
(fetchpatch {
|
|
name = "gtk-doc-dep";
|
|
url = "https://gitlab.gnome.org/GNOME/libgudev/-/commit/34336cbadbcaac8b9b029f730eed0bdf4c633617.diff";
|
|
sha256 = "sha256-Bk05xe69LGqWH1uhLMZhwbVMSsCTyBrrOvqWic2TTd4=";
|
|
})
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
vala
|
|
glib # for glib-mkenums needed during the build
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
gobject-introspection
|
|
udev
|
|
glib
|
|
];
|
|
|
|
mesonFlags = [
|
|
# There's a dependency cycle with umockdev and the tests fail to LD_PRELOAD anyway
|
|
"-Dtests=disabled"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A library that provides GObject bindings for libudev";
|
|
homepage = "https://wiki.gnome.org/Projects/libgudev";
|
|
maintainers = [ maintainers.eelco ] ++ teams.gnome.members;
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl2Plus;
|
|
};
|
|
}
|