25 lines
609 B
Nix
25 lines
609 B
Nix
{ stdenv, fetchFromGitHub, alsaLib, cmake, pkgconfig, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "apulse-${version}";
|
|
version = "0.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "i-rinat";
|
|
repo = "apulse";
|
|
rev = "v${version}";
|
|
sha256 = "1w0mqa8gcrvvlns3pryhmlsc0g1irdnwsawx4g34wgwrp9paqqzm";
|
|
};
|
|
|
|
buildInputs =
|
|
[ alsaLib cmake pkgconfig glib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "PulseAudio emulation for ALSA";
|
|
homepage = "https://github.com/i-rinat/apulse";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.jagajaga ];
|
|
};
|
|
}
|