159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ lib
|
|
, substituteAll
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, gitUpdater
|
|
, mobile-broadband-provider-info
|
|
, qmake
|
|
, qtbase
|
|
, qtdeclarative
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "libqofono";
|
|
version = "0.123";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sailfishos";
|
|
repo = "libqofono";
|
|
rev = version;
|
|
hash = "sha256-Ml86wHejSDyR2ibamuzg14GZ5S7zHBgPC9K5G+sgtC0=";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./0001-NixOS-provide-mobile-broadband-provider-info-path.patch;
|
|
inherit mobile-broadband-provider-info;
|
|
})
|
|
./0001-NixOS-Skip-tests-they-re-shock-full-of-hardcoded-FHS.patch
|
|
];
|
|
|
|
# Replaces paths from the Qt store path to this library's store path.
|
|
postPatch = ''
|
|
substituteInPlace src/src.pro \
|
|
--replace /usr $out \
|
|
--replace '$$[QT_INSTALL_PREFIX]' "$out" \
|
|
--replace 'target.path = $$[QT_INSTALL_LIBS]' "target.path = $out/lib"
|
|
|
|
substituteInPlace plugin/plugin.pro \
|
|
--replace '$$[QT_INSTALL_QML]' $out'/${qtbase.qtQmlPrefix}'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
];
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "Library for accessing the ofono daemon, and declarative plugin for it";
|
|
homepage = "https://git.sailfishos.org/mer-core/libqofono/";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|