ncpamixer: init at version 1.2
This commit is contained in:
parent
71d1f053b7
commit
22df03f39e
|
@ -0,0 +1,33 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, ncurses, libpulseaudio, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "ncpamixer-${version}";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fulhax";
|
||||
repo = "ncpamixer";
|
||||
rev = version;
|
||||
sha256 = "01kvd0pg5yraymlln5xdzqj1r6adxfvvza84wxn2481kcxfral54";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses libpulseaudio ];
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
|
||||
configurePhase = ''
|
||||
make PREFIX=$out build/Makefile
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
make build
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An ncurses mixer for PulseAudio inspired by pavucontrol";
|
||||
homepage = https://github.com/fulhax/ncpamixer;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ StijnDW ];
|
||||
};
|
||||
}
|
|
@ -16568,6 +16568,8 @@ with pkgs;
|
|||
|
||||
pamixer = callPackage ../applications/audio/pamixer { };
|
||||
|
||||
ncpamixer = callPackage ../applications/audio/ncpamixer { };
|
||||
|
||||
pan = callPackage ../applications/networking/newsreaders/pan {
|
||||
spellChecking = false;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue