mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
25 lines
609 B
Nix
25 lines
609 B
Nix
{ stdenv, fetchFromGitHub, alsaLib, cmake, pkgconfig, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "apulse-${version}";
|
|
version = "0.1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "i-rinat";
|
|
repo = "apulse";
|
|
rev = "v${version}";
|
|
sha256 = "115z5a0n8lkcqfgz0cgvjw3p7d0nvzfxzd9g0h137ziflyx3ysh1";
|
|
};
|
|
|
|
buildInputs =
|
|
[ alsaLib cmake pkgconfig glib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "PulseAudio emulation for ALSA";
|
|
homepage = "https://github.com/i-rinat/apulse";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.jagajaga ];
|
|
};
|
|
}
|