nixpkgs/pkgs/misc/apulse/default.nix

34 lines
808 B
Nix
Raw Normal View History

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