Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

60 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
meson,
python3,
ninja,
pkg-config,
vala,
glib,
libgee,
dbus,
glib-networking,
wrapGAppsHook3,
}:
stdenv.mkDerivation rec {
pname = "contractor";
version = "0.3.5";
src = fetchFromGitHub {
owner = "elementary";
repo = "contractor";
rev = version;
sha256 = "1sqww7zlzl086pjww3d21ah1g78lfrc9aagrqhmsnnbji9gwb8ab";
};
nativeBuildInputs = [
dbus
meson
ninja
pkg-config
python3
vala
wrapGAppsHook3
];
buildInputs = [
glib
glib-networking
libgee
];
PKG_CONFIG_DBUS_1_SESSION_BUS_SERVICES_DIR = "${placeholder "out"}/share/dbus-1/services";
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
description = "Desktop-wide extension service used by elementary OS";
homepage = "https://github.com/elementary/contractor";
license = licenses.gpl3Plus;
platforms = platforms.linux;
teams = [ teams.pantheon ];
mainProgram = "contractor";
};
}