nixpkgs/pkgs/misc/apulse/default.nix

25 lines
609 B
Nix
Raw Normal View History

2014-11-18 11:35:33 -08:00
{ stdenv, fetchFromGitHub, alsaLib, cmake, pkgconfig, glib }:
2014-10-12 04:09:49 -07:00
stdenv.mkDerivation rec {
name = "apulse-${version}";
2015-10-17 17:47:02 -07:00
version = "0.1.6";
2014-10-12 04:09:49 -07:00
2014-11-18 11:35:33 -08:00
src = fetchFromGitHub {
owner = "i-rinat";
repo = "apulse";
rev = "v${version}";
2015-10-17 17:47:02 -07:00
sha256 = "1w0mqa8gcrvvlns3pryhmlsc0g1irdnwsawx4g34wgwrp9paqqzm";
2014-10-12 04:09:49 -07:00
};
buildInputs =
[ alsaLib cmake pkgconfig glib ];
meta = with stdenv.lib; {
2014-11-11 05:20:43 -08:00
description = "PulseAudio emulation for ALSA";
2014-10-12 04:09:49 -07:00
homepage = "https://github.com/i-rinat/apulse";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.jagajaga ];
};
}