mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
pantheon.cerbere: remove
This commit is contained in:
parent
83eafe80f2
commit
120a2f3033
|
@ -206,7 +206,6 @@ in
|
|||
})
|
||||
|
||||
# Services
|
||||
cerbere
|
||||
elementary-capnet-assist
|
||||
elementary-dpms-helper
|
||||
elementary-settings-daemon
|
||||
|
|
|
@ -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.";
|
||||
|
||||
})
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue