apulse: add pkg

Closes #4488
This commit is contained in:
Arseniy Seroka
2014-10-12 15:09:49 +04:00
committed by Mateusz Kowalczyk
parent f522344285
commit b8252a4494
4 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
{ 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; {
description = "PulseAudio emulation for ALSA.";
homepage = "https://github.com/i-rinat/apulse";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.jagajaga ];
};
}