Merge pull request #107457 from flokli/umockdev-0.15.2
umockdev: 0.13.1 -> 0.15.2
This commit is contained in:
commit
5afb1fed39
1 changed files with 37 additions and 21 deletions
|
@ -1,53 +1,69 @@
|
||||||
{ stdenv, fetchurl, fetchpatch, pkgconfig
|
{ stdenv
|
||||||
, gobject-introspection, glib, systemd, libgudev, vala
|
, docbook_xsl
|
||||||
, usbutils, which, python3 }:
|
, fetchurl
|
||||||
|
, glib
|
||||||
|
, gobject-introspection
|
||||||
|
, gtk-doc
|
||||||
|
, libgudev
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, python3
|
||||||
|
, systemd
|
||||||
|
, usbutils
|
||||||
|
, vala
|
||||||
|
, which
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "umockdev";
|
pname = "umockdev";
|
||||||
version = "0.13.1";
|
version = "0.15.2";
|
||||||
|
|
||||||
outputs = [ "bin" "out" "dev" "doc" ];
|
outputs = [ "bin" "out" "dev" "doc" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/martinpitt/umockdev/releases/download/${version}/${pname}-${version}.tar.xz";
|
url = "https://github.com/martinpitt/umockdev/releases/download/${version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "197a169imiirgm73d9fn9234cx56agyw9d2f47h7f1d8s2d51lla";
|
sha256 = "19f21qb9ckwvlm7yzpnc0vcp092qbkms2yrafc26b9a63v4imj52";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
mesonFlags = [
|
||||||
./fix-test-paths.patch
|
"-Dgtk_doc=true"
|
||||||
# https://github.com/NixOS/nixpkgs/commit/9960a2be9b32a6d868046c5bfa188b9a0dd66682#commitcomment-34734461
|
|
||||||
./disable-failed-test.patch
|
|
||||||
# https://github.com/martinpitt/umockdev/pull/93
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/abbradar/umockdev/commit/ce22f893bf50de0b32760238a3e2cfb194db89e9.patch";
|
|
||||||
sha256 = "01q3qhs30x8hl23iigimsa2ikbiw8y8y0bpmh02mh1my87shpwnx";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# autoreconfHook complains if we try to build the documentation
|
|
||||||
postPatch = ''
|
|
||||||
echo 'EXTRA_DIST =' > docs/gtk-doc.make
|
|
||||||
'';
|
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
patchShebangs tests/test-static-code
|
patchShebangs tests/test-static-code
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ glib systemd libgudev ];
|
buildInputs = [ glib systemd libgudev ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig vala gobject-introspection ];
|
nativeBuildInputs = [
|
||||||
|
docbook_xsl
|
||||||
|
gobject-introspection
|
||||||
|
gtk-doc
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
vala
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ python3 which usbutils ];
|
checkInputs = [ python3 which usbutils ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
# Test fail with libusb 1.0.24
|
# Test fail with libusb 1.0.24
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/107420
|
||||||
|
# https://github.com/martinpitt/umockdev/issues/115
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $doc/share/doc/umockdev/
|
||||||
|
mv docs/reference $doc/share/doc/umockdev/
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Mock hardware devices for creating unit tests";
|
description = "Mock hardware devices for creating unit tests";
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
maintainers = with maintainers; [];
|
maintainers = with maintainers; [ flokli ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue