nixpkgs/pkgs/misc/apulse/default.nix

25 lines
609 B
Nix
Raw Normal View History

2014-11-18 19:35:33 +00:00
{ stdenv, fetchFromGitHub, alsaLib, cmake, pkgconfig, glib }:
2014-10-12 11:09:49 +00:00
stdenv.mkDerivation rec {
name = "apulse-${version}";
2015-03-31 00:17:43 +00:00
version = "0.1.5";
2014-10-12 11:09:49 +00:00
2014-11-18 19:35:33 +00:00
src = fetchFromGitHub {
owner = "i-rinat";
repo = "apulse";
rev = "v${version}";
2015-03-31 12:11:47 +00:00
sha256 = "0b384dr415flxk3n4abfwfljlh7vvr1g9gad15zc5fgbyxsinv12";
2014-10-12 11:09:49 +00:00
};
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 ];
};
}