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}";
2014-11-18 19:35:33 +00:00
version = "0.1.4";
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}";
sha256 = "115z5a0n8lkcqfgz0cgvjw3p7d0nvzfxzd9g0h137ziflyx3ysh1";
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 ];
};
}