nixpkgs/pkgs/misc/apulse/default.nix
Arseniy Seroka b8252a4494 apulse: add pkg
Closes #4488
2014-10-12 12:21:09 +01:00

23 lines
601 B
Nix

{ 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 ];
};
}