nixpkgs/pkgs/desktops/pantheon/services/cerbere/default.nix
worldofpeace ebc6b67250 pantheon: drop gobject-introspection for setup-hook
Vala now has the setup-hook we need. [0]

[0]: 79ca7f4cb4
2019-06-11 03:00:35 -04:00

48 lines
957 B
Nix

{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3, ninja, glib, libgee, vala, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "cerbere";
version = "0.2.4";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
sha256 = "0f9jr6q5z6nir5b77f96wm9rx6r6s9i0sr1yrymg3n7jyjgrvdwp";
};
passthru = {
updateScript = pantheon.updateScript {
repoName = pname;
};
};
nativeBuildInputs = [
meson
ninja
pkgconfig
python3
vala
wrapGAppsHook
];
buildInputs = [
glib
libgee
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
meta = with stdenv.lib; {
description = "A simple service to ensure uptime of essential processes";
homepage = https://github.com/elementary/cerbere;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = pantheon.maintainers;
};
}