1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pantheon.cerbere: remove

This commit is contained in:
worldofpeace 2020-03-28 19:38:33 -04:00
parent 83eafe80f2
commit 120a2f3033
3 changed files with 2 additions and 61 deletions

View file

@ -206,7 +206,6 @@ in
})
# Services
cerbere
elementary-capnet-assist
elementary-dpms-helper
elementary-settings-daemon

View file

@ -99,8 +99,6 @@ lib.makeScope pkgs.newScope (self: with self; {
#### SERVICES
cerbere = callPackage ./services/cerbere { };
contractor = callPackage ./services/contractor { };
elementary-capnet-assist = callPackage ./services/elementary-capnet-assist { };
@ -200,4 +198,6 @@ lib.makeScope pkgs.newScope (self: with self; {
inherit (pkgs) vala; # added 2019-10-10
cerbere = throw "Cerbere is now obsolete https://github.com/elementary/cerbere/releases/tag/2.5.1.";
})

View file

@ -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;
};
}