blob: fde1430e887ed4a711e1003ccf9ef5f1c9ede8ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
stdenv,
fetchgit,
libpulseaudio,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pavolctld";
version = "1.0.1";
src = fetchgit {
url = "https://git.tjkeller.xyz/pavolctld";
tag = "v${finalAttrs.version}";
hash = "sha256-nmN8bQKQNGpCGvHQnZK9YQgB80SxRSds0V9Y7h/Guh8=";
};
buildInputs = [ libpulseaudio ];
installFlags = [ "PREFIX=$(out)" ];
meta = {
description = "Minimal volume control/monitoring daemon for PulseAudio and PipeWire";
homepage = "https://tjkeller.xyz/projects/pavolctld";
platforms = lib.platforms.linux;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.tjkeller ];
mainProgram = "pavolctld";
};
})
|