nixpkgs/pkgs/applications/audio/ncpamixer/default.nix

30 lines
777 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, ncurses, libpulseaudio, pkg-config }:
2018-02-16 21:50:45 +00:00
stdenv.mkDerivation rec {
pname = "ncpamixer";
2020-11-03 13:24:42 +00:00
version = "1.3.3.1";
2018-02-16 21:50:45 +00:00
src = fetchFromGitHub {
owner = "fulhax";
repo = "ncpamixer";
rev = version;
2020-11-03 13:24:42 +00:00
sha256 = "1v3bz0vpgh18257hdnz3yvbnl51779g1h5b265zgc21ks7m1jw5z";
2018-02-16 21:50:45 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2018-02-16 21:50:45 +00:00
buildInputs = [ ncurses libpulseaudio ];
2018-02-16 21:50:45 +00:00
configurePhase = ''
make PREFIX=$out USE_WIDE=1 RELEASE=1 build/Makefile
2018-02-16 21:50:45 +00:00
'';
meta = with lib; {
2018-02-16 21:50:45 +00:00
description = "An ncurses mixer for PulseAudio inspired by pavucontrol";
homepage = "https://github.com/fulhax/ncpamixer";
2018-02-16 21:50:45 +00:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ StijnDW SuperSandro2000 ];
2018-02-16 21:50:45 +00:00
};
}