mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
16 lines
228 B
Nix
16 lines
228 B
Nix
{
|
|
buildAstalModule,
|
|
json-glib,
|
|
gdk-pixbuf,
|
|
quarrel,
|
|
}:
|
|
buildAstalModule {
|
|
name = "notifd";
|
|
buildInputs = [
|
|
json-glib
|
|
gdk-pixbuf
|
|
quarrel
|
|
];
|
|
meta.description = "Astal module for notification daemon";
|
|
}
|