1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
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 12:09:49 +01:00
stdenv.mkDerivation rec {
name = "apulse-${version}";
2015-03-31 01:17:43 +01:00
version = "0.1.5";
2014-10-12 12:09:49 +01:00
2014-11-18 19:35:33 +00:00
src = fetchFromGitHub {
owner = "i-rinat";
repo = "apulse";
rev = "v${version}";
2015-03-31 13:11:47 +01:00
sha256 = "0b384dr415flxk3n4abfwfljlh7vvr1g9gad15zc5fgbyxsinv12";
2014-10-12 12:09:49 +01: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 12:09:49 +01:00
homepage = "https://github.com/i-rinat/apulse";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.jagajaga ];
};
}