python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / ofono-phonesim / default.nix
blobc9728f9cbbf63d769b140df805ccf2c69ef41569
1 { lib
2 , mkDerivation
3 , fetchgit
4 , autoreconfHook
5 , pkg-config
6 , qtbase
7 }:
9 mkDerivation {
10   pname = "ofono-phonesim";
11   version = "unstable-2019-11-18";
13   src = fetchgit {
14     url = "git://git.kernel.org/pub/scm/network/ofono/phonesim.git";
15     rev = "adf231a84cd3708b825dc82c56e841dd7e3b4541";
16     sha256 = "1840914sz46l8h2jwa0lymw6dvgj72wq9bhp3k4v4rk6masbf6hp";
17   };
19   nativeBuildInputs = [
20     autoreconfHook
21     pkg-config
22   ];
24   buildInputs = [
25     qtbase
26   ];
28   makeFlags = [
29     "MOC=${qtbase.dev}/bin/moc"
30     "UIC=${qtbase.dev}/bin/uic"
31   ];
33   meta = with lib; {
34     description = "Phone Simulator for modem testing";
35     homepage = "https://01.org/ofono";
36     license = licenses.gpl2;
37     maintainers = with maintainers; [ jtojnar ];
38     platforms = platforms.linux;
39   };