Revert "sxmo-utils: define a hooks passthru package"

This reverts commit 3f9261d765.

we achieve hooks at the service layer now.
This commit is contained in:
Colin 2023-05-17 07:00:52 +00:00
parent a96e10617f
commit e0bd579e44
2 changed files with 0 additions and 14 deletions

View File

@ -1,5 +1,4 @@
{ stdenv { stdenv
, callPackage
, fetchgit , fetchgit
, gitUpdater , gitUpdater
, lib , lib
@ -37,7 +36,6 @@ stdenv.mkDerivation rec {
passthru = { passthru = {
providedSessions = [ "sxmo" "swmo" ]; providedSessions = [ "sxmo" "swmo" ];
updateScript = gitUpdater { }; updateScript = gitUpdater { };
hooks = callPackage ./hooks.nix { };
}; };
meta = { meta = {

View File

@ -1,12 +0,0 @@
{ stdenv
, sxmo-utils
}:
stdenv.mkDerivation rec {
pname = "sxmo-utils-default-hooks";
inherit (sxmo-utils) version;
installPhase = ''
mkdir -p $out
ln -s ${sxmo-utils}/share/sxmo/default_hooks $out/bin
'';
}