systembus-notify: init at 1.0 (#88441)
* systembus-notify: init at 1.0 * systembus-notify: make it autostart
This commit is contained in:
parent
919b0554e0
commit
b53605ac89
30
pkgs/applications/misc/systembus-notify/default.nix
Normal file
30
pkgs/applications/misc/systembus-notify/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, systemd }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "systembus-notify";
|
||||||
|
version = "1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rfjakob";
|
||||||
|
repo = "systembus-notify";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "11zq84qfmbyl51d3r6294l2bjhlgwa9bx7d263g9fkqrwsg0si0y";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ systemd ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -Dm755 systembus-notify -t $out/bin
|
||||||
|
install -Dm644 systembus-notify.desktop -t $out/etc/xdg/autostart
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "System bus notification daemon";
|
||||||
|
homepage = "https://github.com/rfjakob/systembus-notify";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [];
|
||||||
|
};
|
||||||
|
}
|
@ -6907,6 +6907,8 @@ in
|
|||||||
libxml2 = libxml2Python;
|
libxml2 = libxml2Python;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systembus-notify = callPackage ../applications/misc/systembus-notify { };
|
||||||
|
|
||||||
stricat = callPackage ../tools/security/stricat { };
|
stricat = callPackage ../tools/security/stricat { };
|
||||||
|
|
||||||
staruml = callPackage ../tools/misc/staruml { inherit (gnome2) GConf; libgcrypt = libgcrypt_1_5; };
|
staruml = callPackage ../tools/misc/staruml { inherit (gnome2) GConf; libgcrypt = libgcrypt_1_5; };
|
||||||
|
Loading…
Reference in New Issue
Block a user