nixpkgs/pkgs/misc/apulse/default.nix

34 lines
810 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, alsa-lib, cmake, pkg-config, glib
, tracingSupport ? true, logToStderr ? true }:
let oz = x: if x then "1" else "0"; in
2014-10-12 15:09:49 +04:00
stdenv.mkDerivation rec {
2019-03-21 07:26:22 +03:00
pname = "apulse";
2020-05-02 05:04:35 +03:00
version = "0.1.13";
2014-10-12 15:09:49 +04:00
2014-11-18 22:35:33 +03:00
src = fetchFromGitHub {
owner = "i-rinat";
2019-03-21 07:26:22 +03:00
repo = pname;
rev = "v${version}";
2020-05-02 05:04:35 +03:00
sha256 = "1p6fh6ah5v3qz7dxhcsixx38bxg44ypbim4m03bxk3ls5i9xslmn";
2014-10-12 15:09:49 +04:00
};
2021-01-17 05:30:45 +03:00
nativeBuildInputs = [ cmake pkg-config ];
2017-09-23 16:35:21 +03:00
buildInputs = [ alsa-lib glib ];
2014-10-12 15:09:49 +04:00
cmakeFlags = [
"-DWITH_TRACE=${oz tracingSupport}"
"-DLOG_TO_STDERR=${oz logToStderr}"
];
meta = with lib; {
2014-11-11 16:20:43 +03:00
description = "PulseAudio emulation for ALSA";
2019-03-21 07:26:22 +03:00
homepage = "https://github.com/i-rinat/apulse";
2014-10-12 15:09:49 +04:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.jagajaga ];
};
}