2014-10-12 11:09:49 +00:00
|
|
|
{ stdenv, fetchurl, alsaLib, cmake, pkgconfig, glib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "apulse-${version}";
|
|
|
|
version = "0.1.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/i-rinat/apulse/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "02906a8iwwjzzkjvhqqai2yd1636cgz9vl69vwq0vkv2v6cn21ky";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ alsaLib cmake pkgconfig glib ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "PulseAudio emulation for ALSA";
|
2014-10-12 11:09:49 +00:00
|
|
|
homepage = "https://github.com/i-rinat/apulse";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.jagajaga ];
|
|
|
|
};
|
|
|
|
}
|