Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
gtk-doc,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
glib,
|
|
json-glib,
|
|
libuev,
|
|
gobject-introspection,
|
|
udevCheckHook,
|
|
vala,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gmobile";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
group = "World";
|
|
owner = "Phosh";
|
|
repo = "gmobile";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-5WRsHbwReLy3ZMbfsyjr3VsGawaQoXMFIDtKw3P/loA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gtk-doc
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gobject-introspection
|
|
udevCheckHook
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
json-glib
|
|
libuev
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
strictDeps = true;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Functions useful in mobile related, glib based projects";
|
|
homepage = "https://gitlab.gnome.org/World/Phosh/gmobile";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = with lib.maintainers; [
|
|
donovanglover
|
|
armelclo
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|