summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/pantheon/services/cerbere/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/pantheon/services/cerbere/default.nix')
-rw-r--r--pkgs/desktops/pantheon/services/cerbere/default.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/desktops/pantheon/services/cerbere/default.nix b/pkgs/desktops/pantheon/services/cerbere/default.nix
deleted file mode 100644
index 02c885198b62..000000000000
--- a/pkgs/desktops/pantheon/services/cerbere/default.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ stdenv
-, fetchFromGitHub
-, pantheon
-, pkgconfig
-, meson
-, python3
-, ninja
-, glib
-, libgee
-, vala_0_46
-, wrapGAppsHook
-}:
-
-stdenv.mkDerivation rec {
- pname = "cerbere";
- version = "2.5.0";
-
- src = fetchFromGitHub {
- owner = "elementary";
- repo = pname;
- rev = version;
- sha256 = "12y6gg4vyc1rhdm2c7pr7bgmdrah7ddphyh25fgh3way8l9gh7vw";
- };
-
- passthru = {
- updateScript = pantheon.updateScript {
- attrPath = "pantheon.${pname}";
- };
- };
-
- nativeBuildInputs = [
- meson
- ninja
- pkgconfig
- python3
- vala_0_46
- 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;
- };
-
-}