mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
upower: Add test dependencies
This commit is contained in:
parent
1cc2026421
commit
2a1fddab47
1 changed files with 44 additions and 1 deletions
|
@ -1,12 +1,16 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, fetchpatch
|
||||
, pkg-config
|
||||
, rsync
|
||||
, libxslt
|
||||
, meson
|
||||
, ninja
|
||||
, python3
|
||||
, dbus
|
||||
, umockdev
|
||||
, libeatmydata
|
||||
, gtk-doc
|
||||
, docbook-xsl-nons
|
||||
, udev
|
||||
|
@ -36,6 +40,15 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "gpLsBh4jgiDO8bxic2BTFhjIwc2q/tuAIxykTHqK6UM=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix test
|
||||
# https://gitlab.freedesktop.org/upower/upower/-/merge_requests/150
|
||||
(fetchpatch {
|
||||
url = "https://gitlab.freedesktop.org/upower/upower/-/commit/a78ee6039054770b466749f8ec4bfbe4c278d697.patch";
|
||||
sha256 = "aUPXnr/2PlOZNb7mQl43hmKe01DtuBUrGnqvwBFRf7Q=";
|
||||
})
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
depsBuildBuild = [
|
||||
|
@ -64,6 +77,16 @@ stdenv.mkDerivation rec {
|
|||
libimobiledevice
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
python3.pkgs.dbus-python
|
||||
python3.pkgs.python-dbusmock
|
||||
python3.pkgs.pygobject3
|
||||
dbus
|
||||
umockdev
|
||||
libeatmydata
|
||||
python3.pkgs.packaging
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
glib
|
||||
];
|
||||
|
@ -79,12 +102,32 @@ stdenv.mkDerivation rec {
|
|||
"-Dgtk-doc=${lib.boolToString withDocs}"
|
||||
];
|
||||
|
||||
doCheck = false; # fails with "env: './linux/integration-test': No such file or directory"
|
||||
doCheck = true;
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs src/linux/integration-test.py
|
||||
patchShebangs src/linux/unittest_inspector.py
|
||||
'';
|
||||
|
||||
preCheck = ''
|
||||
# Our gobject-introspection patches make the shared library paths absolute
|
||||
# in the GIR files. When running tests, the library is not yet installed,
|
||||
# though, so we need to replace the absolute path with a local one during build.
|
||||
# We are using a symlink that will be overwitten during installation.
|
||||
mkdir -p "$out/lib"
|
||||
ln -s "$PWD/libupower-glib/libupower-glib.so" "$out/lib/libupower-glib.so.3"
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
# Slow fsync calls can make self-test fail:
|
||||
# https://gitlab.freedesktop.org/upower/upower/-/issues/195
|
||||
eatmydata meson test --print-errorlogs
|
||||
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
# Move stuff from DESTDIR to proper location.
|
||||
# We use rsync to merge the directories.
|
||||
|
|
Loading…
Reference in a new issue