Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
glib,
|
|
libpulseaudio,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcardiacarrest";
|
|
version = "12.2.8"; # <PA API version>.<version>
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oxij";
|
|
repo = "libcardiacarrest";
|
|
rev = "d89639f5b2d298cf74af26880f5ebf50e645166d";
|
|
sha256 = "0vrigwcw3g8zknqyznv6y3437ahn1w00gv3d303smmygr0p8bd94";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
postInstall = ''
|
|
moveToOutput $out/include $dev
|
|
moveToOutput $out/lib/pkgconfig $dev
|
|
moveToOutput $out/lib/cmake $dev
|
|
'';
|
|
|
|
meta =
|
|
with lib;
|
|
src.meta
|
|
// {
|
|
description = "Trivial implementation of libpulse PulseAudio library API";
|
|
longDescription = ''
|
|
libcardiacarrest is a trivial implementation of libpulse
|
|
PulseAudio library API that unconditionally (but gracefully)
|
|
fails to connect to the PulseAudio daemon and does nothing else.
|
|
|
|
apulse and pressureaudio (which uses apulse internally) are an
|
|
inspiration for this but unlike those two projects
|
|
libcardiacarrest is not an emulation layer, all it does is it
|
|
gracefully fails to provide the requested PulseAudio service
|
|
hoping the application would try something else (e.g. ALSA or
|
|
JACK).
|
|
'';
|
|
license = libpulseaudio.meta.license; # "same as PA headers"
|
|
maintainers = [ maintainers.oxij ]; # also the author
|
|
};
|
|
|
|
}
|