9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
96 lines
1.9 KiB
Nix
96 lines
1.9 KiB
Nix
{ lib, stdenv
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
, python3
|
|
, umockdev
|
|
, gobject-introspection
|
|
, dbus
|
|
, asciidoc
|
|
, libxml2
|
|
, libxslt
|
|
, docbook_xml_dtd_45
|
|
, docbook_xsl
|
|
, glib
|
|
, systemd
|
|
, polkit
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bolt";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "bolt";
|
|
repo = "bolt";
|
|
rev = version;
|
|
sha256 = "sha256-lcJE+bMK2S2GObHMy/Fu12WGb3T1HrWjsNyZPz4/f4E=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
asciidoc
|
|
docbook_xml_dtd_45
|
|
docbook_xsl
|
|
libxml2
|
|
libxslt
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
] ++ lib.optional (!doCheck) python3;
|
|
|
|
buildInputs = [
|
|
glib
|
|
polkit
|
|
systemd
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
export LD_LIBRARY_PATH=${umockdev.out}/lib/
|
|
'';
|
|
|
|
checkInputs = [
|
|
dbus
|
|
gobject-introspection
|
|
umockdev
|
|
(python3.withPackages
|
|
(p: [ p.pygobject3 p.dbus-python p.python-dbusmock ]))
|
|
];
|
|
|
|
patches = [
|
|
# meson install tries to create /var/lib/boltd
|
|
./0001-skip-mkdir.patch
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/104429
|
|
# Upstream issue: https://gitlab.freedesktop.org/bolt/bolt/-/issues/167
|
|
(fetchpatch {
|
|
name = "disable-atime-tests.diff";
|
|
url = "https://gitlab.freedesktop.org/roberth/bolt/-/commit/1f672a7de2ebc4dd51590bb90f3b873a8ac0f4e6.diff";
|
|
sha256 = "134f5s6kjqs6612pwq5pm1miy58crn1kxbyyqhzjnzmf9m57fnc8";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs scripts tests
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Dlocalstatedir=/var"
|
|
];
|
|
|
|
PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
|
|
PKG_CONFIG_UDEV_UDEVDIR = "${placeholder "out"}/lib/udev";
|
|
|
|
meta = with lib; {
|
|
description = "Thunderbolt 3 device management daemon";
|
|
homepage = "https://gitlab.freedesktop.org/bolt/bolt";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ callahad ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|