nixpkgs/pkgs/misc/apulse/default.nix

25 lines
609 B
Nix
Raw Normal View History

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