diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 0c0ed83b9a8f..99824d264257 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9532,6 +9532,16 @@ githubId = 5802758; name = "Joshua Trees"; }; + juancmuller = { + email = "nix@juancmuller.com"; + githubId = 208500; + github = "jcmuller"; + matrix = "@jcmuller@beeper.com"; + name = "Juan C. Müller"; + keys = [{ + fingerprint = "D78D 25D8 A1B8 2596 267F 35B8 F44E A51A 28F9 B4A7"; + }]; + }; juaningan = { email = "juaningan@gmail.com"; github = "oneingan"; diff --git a/pkgs/by-name/pa/pa-notify/package.nix b/pkgs/by-name/pa/pa-notify/package.nix new file mode 100644 index 000000000000..3846b71ef38f --- /dev/null +++ b/pkgs/by-name/pa/pa-notify/package.nix @@ -0,0 +1,42 @@ +{ lib +, stdenv +, fetchFromGitHub +, cmake +, extra-cmake-modules +, glib +, libnotify +, libpulseaudio +, pkg-config +}: +stdenv.mkDerivation (finalAttrs: { + pname = "pa-notify"; + version = "1.5.0"; + + src = fetchFromGitHub { + owner = "ikrivosheev"; + repo = "pa-notify"; + rev = "v${finalAttrs.version}"; + hash = "sha256-356qwSxxxAUNJajsVjH3zqGAZQwMOcoLPSKPZdsCmBM="; + }; + + nativeBuildInputs = [ + cmake + extra-cmake-modules + pkg-config + ]; + + buildInputs = [ + glib + libnotify + libpulseaudio + ]; + + meta = with lib; { + homepage = "https://github.com/ikrivosheev/pa-notify"; + description = "PulseAudio or PipeWire volume notification"; + license = licenses.mit; + maintainers = with maintainers; [ juancmuller ]; + mainProgram = "pa-notify"; + platforms = platforms.linux; + }; +})