3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/umockdev/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

88 lines
1.8 KiB
Nix
Raw Normal View History

2021-03-24 04:42:11 +00:00
{ stdenv
, lib
, docbook-xsl-nons
, fetchurl
, glib
, gobject-introspection
, gtk-doc
, libgudev
2021-10-01 19:27:28 +01:00
, libpcap
, meson
, ninja
, pkg-config
, python3
, systemd
, usbutils
, vala
, which
}:
stdenv.mkDerivation rec {
pname = "umockdev";
version = "0.17.9";
2021-03-24 04:42:11 +00:00
outputs = [ "bin" "out" "dev" "devdoc" ];
2018-08-12 13:08:00 +01:00
src = fetchurl {
url = "https://github.com/martinpitt/umockdev/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-FEmWjJVmKKckC30zULGI/mZ3VNtirnweZq2gKh/Y5VE=";
};
patches = [
# Hardcode absolute paths to libraries so that consumers
# do not need to set LD_LIBRARY_PATH themselves.
./hardcode-paths.patch
];
nativeBuildInputs = [
2021-03-24 04:42:11 +00:00
docbook-xsl-nons
gobject-introspection
gtk-doc
meson
ninja
pkg-config
vala
];
2021-03-24 04:42:11 +00:00
buildInputs = [
glib
systemd
libgudev
2021-10-01 19:27:28 +01:00
libpcap
2021-03-24 04:42:11 +00:00
];
checkInputs = [
python3
which
usbutils
];
2018-05-29 10:54:18 +01:00
2021-03-24 04:42:11 +00:00
mesonFlags = [
"-Dgtk_doc=true"
];
2021-01-03 13:04:53 +00:00
doCheck = true;
postPatch = ''
# Substitute the path to this derivation in the patch we apply.
substituteInPlace src/umockdev-wrapper \
--subst-var-by 'LIBDIR' "''${!outputLib}/lib"
'';
preCheck = ''
# Our patch makes the path to the `LD_PRELOAD`ed library absolute.
# 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 overridden during installation.
mkdir -p "$out/lib"
ln -s "$PWD/libumockdev-preload.so.0" "$out/lib/libumockdev-preload.so.0"
'';
meta = with lib; {
description = "Mock hardware devices for creating unit tests";
2021-03-24 04:42:11 +00:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ flokli ];
platforms = with platforms; linux;
};
}