60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitLab
|
|
, gitUpdater
|
|
, testers
|
|
, cmake
|
|
, cmake-extras
|
|
, glib
|
|
, intltool
|
|
, pkg-config
|
|
, validatePkgConfig
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "lomiri-schemas";
|
|
version = "0.1.4";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "ubports";
|
|
repo = "development/core/lomiri-schemas";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-Pnn/Qh5EYEqmP8QFsZcSCpDL36++aeUUok3t9a1/1n0=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
glib # glib-compile-schemas
|
|
pkg-config
|
|
intltool
|
|
validatePkgConfig
|
|
];
|
|
|
|
buildInputs = [
|
|
cmake-extras
|
|
glib
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "GSETTINGS_LOCALINSTALL" true)
|
|
(lib.cmakeBool "GSETTINGS_COMPILE" true)
|
|
];
|
|
|
|
passthru = {
|
|
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
updateScript = gitUpdater { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GSettings / AccountsService schema files for Lomiri";
|
|
homepage = "https://gitlab.com/ubports/development/core/lomiri-schemas";
|
|
changelog = "https://gitlab.com/ubports/development/core/lomiri-schemas/-/blob/${finalAttrs.version}/ChangeLog";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = teams.lomiri.members;
|
|
platforms = platforms.linux;
|
|
pkgConfigModules = [
|
|
"lomiri-schemas"
|
|
];
|
|
};
|
|
})
|